package model type Todo struct { ID int `json:"id"` Title string `json:"title"` Done bool `json:"done"` } type Todos []Todo