| 21 | import "context" |
| 22 | |
| 23 | type Table struct { |
| 24 | M map[string]string |
| 25 | Err error |
| 26 | } |
| 27 | |
| 28 | func (m Table) Lookup(_ context.Context, a string) (string, bool, error) { |
| 29 | b, ok := m.M[a] |
nothing calls this directly
no outgoing calls
no test coverage detected