testhub/store/store.go

7 lines
107 B
Go
Raw Normal View History

2022-05-25 12:21:32 +02:00
package store
type PlayerStore interface {
GetPlayerScore(player string) int
RecordWin(player string)
}