minerecon/player.go

9 lines
128 B
Go
Raw Permalink Normal View History

2024-08-22 19:33:17 +02:00
package main
import "github.com/google/uuid"
type Player struct {
Name string `json:"name"`
ID uuid.UUID `json:"id"`
}