Service defines functions used to return resource interface.
| 10 | |
| 11 | // Service defines functions used to return resource interface. |
| 12 | type Service interface { |
| 13 | Users() UserSrv |
| 14 | Secrets() SecretSrv |
| 15 | Policies() PolicySrv |
| 16 | } |
| 17 | |
| 18 | type service struct { |
| 19 | store store.Factory |
no outgoing calls
no test coverage detected
searching dependent graphs…