6 lines
107 B
Go
6 lines
107 B
Go
package store
|
|
|
|
type PlayerStore interface {
|
|
GetPlayerScore(player string) int
|
|
RecordWin(player string)
|
|
}
|