// 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", }, }