1 package server 2 3 type account struct { 4 id int 5 email []byte 6 username []byte 7 password []byte 8 9 autoplay bool 10 highlight bool 11 pips bool 12 moves bool 13 flip bool 14 advanced bool 15 speed int8 16 17 casual *clientRating 18 competitive *clientRating 19 } 20