| 189 | } |
| 190 | |
| 191 | type ExpandableScope interface { |
| 192 | Expand() (Scope, error) |
| 193 | // Name is for logging and tracing purposes, we want to know the human |
| 194 | // name of the scope. |
| 195 | Name() RoleIdentifier |
| 196 | } |
| 197 | |
| 198 | type ScopeName string |
| 199 |
no outgoing calls
no test coverage detected