16 lines
165 B
Go
Raw Normal View History

2025-01-05 02:53:54 +01:00
package model
type PlayerID string
type Player struct {
2025-01-06 15:06:47 +01:00
ID PlayerID
Elo int
2025-01-05 02:53:54 +01:00
}
func NewPlayer(id PlayerID) Player {
return Player{
2025-01-06 15:06:47 +01:00
ID: id,
Elo: 100,
2025-01-05 02:53:54 +01:00
}
}