7 lines
92 B
Go
7 lines
92 B
Go
package rbac
|
|
|
|
type IRbac interface {
|
|
Can(role, method, path string) bool
|
|
Reload() error
|
|
}
|