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