12 lines
315 B
Go
12 lines
315 B
Go
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"},
|
|
}
|