package domain import "time" // Todo is the core domain entity. type Todo struct { ID int64 `json:"id"` Title string `json:"title"` Done bool `json:"done"` CreatedAt time.Time `json:"created_at"` }