6 lines
62 B
Go
6 lines
62 B
Go
|
package api
|
||
|
|
||
|
type Queryable interface {
|
||
|
Get(string) string
|
||
|
}
|