You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
342 B

package models
type User struct {
User_id int64 `db:"user_id"`
User_name string `db:"user_name"`
User_gender int `db:"user_gender"`
User_score int64 `db:"user_score"`
}
type UserScore struct {
User_id int64 `db:"user_id"`
User_score int64 `db:"user_score"`
}
type SaveInfo struct {
Msg string
SavePath string
}