mirror of
https://github.com/rancher/types.git
synced 2025-08-19 04:47:03 +00:00
7 lines
201 B
Go
7 lines
201 B
Go
package systemtokens
|
|
|
|
type Interface interface {
|
|
EnsureSystemToken(name, description, kind, username string, overrideTTL *int64, randomize bool) (string, error)
|
|
DeleteToken(tokenName string) error
|
|
}
|