feat(sdbapi): return whole game from create game
1 files changed, 1 insertions(+), 1 deletions(-) M sdbapi/handlers/gamecreate.go
M sdbapi/handlers/gamecreate.go => sdbapi/handlers/gamecreate.go +1 -1
@@ 32,5 32,5 @@ func CreateGame(c *gin.Context) { return } - c.JSON(http.StatusCreated, gin.H{"id": game.ID}) + c.JSON(http.StatusCreated, game) }