elTesto/models/item.go

13 lines
315 B
Go
Raw Permalink Normal View History

2025-03-26 22:23:02 +00:00
package models
type Item struct {
ID int `json:"id"`
Title string `json:"title"`
Body string `json:"body"`
}
var Items = []Item{
{ID: 1, Title: "Primer artículo", Body: "Este es el cuerpo del primer artículo"},
{ID: 2, Title: "Segundo artículo", Body: "Este es el cuerpo del segundo artículo"},
}