package peliculas type Pelicula struct { Title string `yaml:"title"` Subtitle string `yaml:"subtitle"` Link string `yaml:"link"` Year int `yaml:"year"` Rate float64 `yaml:"rate"` Image string `yaml:"image"` Poster string `yaml:"poster-image"` Background string `yaml:"background-image"` Date string `yaml:"date"` Tags []string } type Peliculas []Pelicula