Versions in this module Expand all Collapse all v0 v0.1.1 Jul 14, 2024 v0.1.0 Jul 13, 2024 Changes in this version + type Cat struct + Breed string + CreatedAt time.Time + ExperienceYears int16 + ID int + Name string + Salary int + UpdatedAt time.Time + func (c Cat) ToModel() *models.Cat + type Mission struct + AssignedCatID *int + CreatedAt time.Time + ID int + IsCompleted bool + UpdatedAt time.Time + func (m Mission) ToModel() *models.Mission + type Note struct + Content string + CreatedAt time.Time + ID int + TargetID int + func (n Note) ToModel() *models.Note + type Target struct + Country string + CreatedAt time.Time + ID int + IsCompleted bool + MissionID int + Name string + UpdatedAt time.Time + func (t Target) ToModel() *models.Target