mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 14:07:38 +03:00
14 lines
303 B
Go
14 lines
303 B
Go
package module
|
|
|
|
// Tabele is the interface implemented by module that implementation string-to-string
|
|
// translation.
|
|
type Table interface {
|
|
Lookup(s string) (string, bool, error)
|
|
}
|
|
|
|
type MutableTable interface {
|
|
Table
|
|
Keys() ([]string, error)
|
|
RemoveKey(k string) error
|
|
SetKey(k, v string) error
|
|
}
|