stub state

This commit is contained in:
Bel LaPointe
2021-02-21 23:22:49 -06:00
parent 7216ac1620
commit 3954d3cc6a
6 changed files with 125 additions and 0 deletions

16
game/master.go Normal file
View File

@@ -0,0 +1,16 @@
package game
import (
"errors"
"local/secret-hitler-via-matrix/game/state"
)
type Master struct{}
func New() (*Master, error) {
return nil, errors.New("not impl")
}
func (m *Master) State() (state.State, error) {
return state.State{}, errors.New("not impl")
}