8 lines
109 B
Go
8 lines
109 B
Go
|
package api
|
||
|
|
||
|
import "github.com/google/uuid"
|
||
|
|
||
|
type LobbyInfo struct {
|
||
|
ID *uuid.UUID `json:"id,omitempty"`
|
||
|
}
|