fix issues

This commit is contained in:
yanghao05
2023-02-07 11:45:23 +08:00
parent ed3e7e3bbf
commit 2d52491536
7 changed files with 48 additions and 23 deletions

View File

@@ -2,5 +2,6 @@ package rbac
type IRbac interface {
Can(role, method, path string) bool
JsonPermissionsForUser(string) (string, error)
Reload() error
}