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