testhub/store/store.go

6 lines
107 B
Go

package store
type PlayerStore interface {
GetPlayerScore(player string) int
RecordWin(player string)
}