stub create events

This commit is contained in:
bel
2024-12-14 23:48:59 -07:00
parent aadc23c45b
commit 2d87e78556
2 changed files with 16 additions and 0 deletions

Binary file not shown.

View File

@@ -199,3 +199,19 @@ func (games Games) GameState(ctx context.Context, id string) (GameState, error)
return result, err
}
func (games Games) CreateEventPlayerJoin(ctx context.Context, id string, playerJoin EventPlayerJoin) error {
return io.EOF
}
func (games Games) CreateEventPlayerLeave(ctx context.Context, id string, playerLeave EventPlayerLeave) error {
return io.EOF
}
func (games Games) CreateEventGameComplete(ctx context.Context, id string) error {
return io.EOF
}
func (games Games) CreateEventAssignmentRotation(ctx context.Context, id string, killer, killed, killWord string) error {
return io.EOF
}