| 8 | ) |
| 9 | |
| 10 | type HelperMaker interface { |
| 11 | FindUser(ctx context.Context, userName string, searchByUPN bool) (bool, config.User, error) |
| 12 | FindGroup(ctx context.Context, groupName string) (bool, config.Group, error) |
| 13 | } |
| 14 | |
| 15 | // Handler is the common interface for all datastores |
| 16 | type Handler interface { |
no outgoing calls
no test coverage detected