1 package zenith 2 3 // Player represents the current standing and wins/draws/losses of a player. 4 type Player struct { 5 ID int 6 Standing int 7 Wins int 8 Draws int 9 Losses int 10 } 11
View as plain text