(ctx context.Context, request *base.PermissionCheckRequest)
| 31 | // and returns a PermissionCheckResponse and an error if any. |
| 32 | type Check interface { |
| 33 | Check(ctx context.Context, request *base.PermissionCheckRequest) (response *base.PermissionCheckResponse, err error) |
| 34 | } |
| 35 | |
| 36 | // Expand is an interface that defines a method for expanding permissions. |
no outgoing calls
no test coverage detected