mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 19:21:03 +01:00
49ee8f2d75
Former-commit-id: 6a3579f2500fc715d7dc606478960946dcade61d
40 lines
892 B
Go
40 lines
892 B
Go
// file: datasource/movies.go
|
|
|
|
package datasource
|
|
|
|
import "github.com/kataras/iris/_examples/mvc/using-method-result/models"
|
|
|
|
// Movies is our imaginary data source.
|
|
var Movies = []models.Movie{
|
|
{
|
|
Name: "Casablanca",
|
|
Year: 1942,
|
|
Genre: "Romance",
|
|
Poster: "https://iris-go.com/images/examples/mvc-movies/1.jpg",
|
|
},
|
|
{
|
|
Name: "Gone with the Wind",
|
|
Year: 1939,
|
|
Genre: "Romance",
|
|
Poster: "https://iris-go.com/images/examples/mvc-movies/2.jpg",
|
|
},
|
|
{
|
|
Name: "Citizen Kane",
|
|
Year: 1941,
|
|
Genre: "Mystery",
|
|
Poster: "https://iris-go.com/images/examples/mvc-movies/3.jpg",
|
|
},
|
|
{
|
|
Name: "The Wizard of Oz",
|
|
Year: 1939,
|
|
Genre: "Fantasy",
|
|
Poster: "https://iris-go.com/images/examples/mvc-movies/4.jpg",
|
|
},
|
|
{
|
|
Name: "North by Northwest",
|
|
Year: 1959,
|
|
Genre: "Thriller",
|
|
Poster: "https://iris-go.com/images/examples/mvc-movies/5.jpg",
|
|
},
|
|
}
|