| 11 | ) |
| 12 | |
| 13 | type adminComplianceRepoStub struct { |
| 14 | values map[string]string |
| 15 | } |
| 16 | |
| 17 | func (r *adminComplianceRepoStub) Get(ctx context.Context, key string) (*Setting, error) { |
| 18 | if value, ok := r.values[key]; ok { |
nothing calls this directly
no outgoing calls
no test coverage detected