mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 14:07:38 +03:00
11 lines
172 B
Go
11 lines
172 B
Go
package testutils
|
|
|
|
type Table struct {
|
|
M map[string]string
|
|
Err error
|
|
}
|
|
|
|
func (m Table) Lookup(a string) (string, bool, error) {
|
|
b, ok := m.M[a]
|
|
return b, ok, m.Err
|
|
}
|