10 lines
201 B
Go
10 lines
201 B
Go
package api
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type PlayerInfo struct {
|
|
PlayerID uuid.UUID `json:"playerID"`
|
|
LobbyID uuid.UUID `json:"lobbyID"`
|
|
Passphrase *string `json:"passphrase,omitempty"`
|
|
}
|