stub state
This commit is contained in:
16
game/master.go
Normal file
16
game/master.go
Normal 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")
|
||||
}
|
||||
Reference in New Issue
Block a user