Files
token-go/auth/rbac_interface.go
2023-05-11 02:05:06 +08:00

6 lines
67 B
Go

package auth
type RBAC interface {
GetRole(id string) []string
}