| 10 | ) |
| 11 | |
| 12 | type mockUserStore struct { |
| 13 | users map[string]*users.User |
| 14 | } |
| 15 | |
| 16 | func (m *mockUserStore) Get(_ string, _ bool, id interface{}) (*users.User, error) { |
| 17 | if v, ok := id.(string); ok { |
nothing calls this directly
no outgoing calls
no test coverage detected