minerecon/player.go
2024-08-22 19:33:17 +02:00

9 lines
128 B
Go

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