type TrainingItem struct {
Id int `json:"id"`
UserId int `json:"userId"`
Name string `json:"name"`
Type string `json:"type"`
Unit string `json:"unit"`
Kcal int `json:"kcal"`
}
type TrainingRecord struct {
Id int `json:"id"`
UserId int `json:"userId"`
TrainingItemId int `json:"trainingItemId"`
Record float64 `json:"record"`
Date int64 `json:"date"`
}
type User struct {
Id int `json:"id"`
Name string `json:"name"`
Email string `json:"email"`
Password string `json:"password"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
}