1
0
mirror of https://github.com/rancher/types.git synced 2025-08-20 21:33:00 +00:00
types/config/systemtokens/systemtokens.go

7 lines
201 B
Go
Raw Normal View History

2021-01-05 04:51:08 +00:00
package systemtokens
type Interface interface {
EnsureSystemToken(name, description, kind, username string, overrideTTL *int64, randomize bool) (string, error)
DeleteToken(tokenName string) error
}