move game id to live among the dtos

This commit is contained in:
2024-01-21 12:28:46 -06:00
parent 24af4b7602
commit 98a45e2680
2 changed files with 13 additions and 3 deletions

View File

@@ -3,12 +3,11 @@ package lobby
import (
"sync"
"github.com/google/uuid"
"git.sunturtle.xyz/studio/shotgun/game"
"git.sunturtle.xyz/studio/shotgun/serve"
)
type GameID = uuid.UUID
type GameID = serve.GameID
// Lobby is a set of active games.
type Lobby struct {