6 lines
88 B
Go
6 lines
88 B
Go
package main
|
|
|
|
type Testinger interface {
|
|
Get(id string) int
|
|
Set(id string, val int)
|
|
}
|