mirror of
https://github.com/weloe/token-go.git
synced 2025-10-02 14:22:10 +08:00
6 lines
72 B
Go
6 lines
72 B
Go
package auth
|
|
|
|
type ACL interface {
|
|
GetPermission(id string) []string
|
|
}
|