type Point struct {
ID int `json:"id"`
Name string `json:"name"`
Count int `json:"count"`
ScoreID int `json:"score_id"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
}
type Score struct {
ID int `json:"id"`
TotalPoint int `json:"total_point"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
}