11 lines
198 B
Go
11 lines
198 B
Go
package store
|
|
|
|
type InMemoryPlayerStore struct{}
|
|
|
|
func (i *InMemoryPlayerStore) GetPlayerScore(player string) int {
|
|
return 123
|
|
}
|
|
|
|
func (i *InMemoryPlayerStore) RecordWin(player string) {
|
|
return
|
|
}
|