feat: initial commit
This commit is contained in:
15
internal/store/models.go
Normal file
15
internal/store/models.go
Normal file
@ -0,0 +1,15 @@
|
||||
package store
|
||||
|
||||
import (
|
||||
"gorm.io/gorm"
|
||||
)
|
||||
|
||||
var models = []any{
|
||||
&Player{},
|
||||
}
|
||||
|
||||
type Player struct {
|
||||
gorm.Model
|
||||
|
||||
Score int
|
||||
}
|
Reference in New Issue
Block a user