9 lines
148 B
Go
9 lines
148 B
Go
|
package api
|
||
|
|
||
|
import "github.com/google/uuid"
|
||
|
|
||
|
type PlayerInfo struct {
|
||
|
PlayerID uuid.UUID `json:"playerID"`
|
||
|
LobbyID uuid.UUID `json:"lobbyID"`
|
||
|
}
|