package store import ( "gorm.io/gorm" ) var models = []any{ &Player{}, } type Player struct { gorm.Model Score int }