echo-todos/model/model.go
Alexilator 4fac3fbfa3
Some checks failed
Build Docker Image / build (push) Failing after 6m38s
public setup
2024-08-19 14:56:20 +02:00

9 lines
138 B
Go

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