9 lines
128 B
Go
9 lines
128 B
Go
|
package main
|
||
|
|
||
|
import "github.com/google/uuid"
|
||
|
|
||
|
type Player struct {
|
||
|
Name string `json:"name"`
|
||
|
ID uuid.UUID `json:"id"`
|
||
|
}
|