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

6 lines
72 B
Go

package auth
type ACL interface {
GetPermission(id string) []string
}