package models import ( "time" ) type TableKey struct { Name string Passcode string } type DiceRoll struct { Faces uint8 Roll []uint8 Player string Note string Timestamp time.Time } type Token struct { Id string SpriteUri string X int Y int }