mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 03:01:03 +01:00
82b5a1d4ed
Prev Commit: 49ee8f2d75
[formerly 6a3579f2500fc715d7dc606478960946dcade61d]
Changelog: https://github.com/kataras/iris/blob/master/HISTORY.md#mo-09-october-2017--v850
This example is updated with the current commit: https://github.com/kataras/iris/tree/master/_examples/mvc/using-output-result
Former-commit-id: 29486ef014b3667fa1c7c66e11c8e95c76a37e57
45 lines
980 B
Go
45 lines
980 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 = map[int64]models.Movie{
|
|
1: {
|
|
ID: 1,
|
|
Name: "Casablanca",
|
|
Year: 1942,
|
|
Genre: "Romance",
|
|
Poster: "https://iris-go.com/images/examples/mvc-movies/1.jpg",
|
|
},
|
|
2: {
|
|
ID: 2,
|
|
Name: "Gone with the Wind",
|
|
Year: 1939,
|
|
Genre: "Romance",
|
|
Poster: "https://iris-go.com/images/examples/mvc-movies/2.jpg",
|
|
},
|
|
3: {
|
|
ID: 3,
|
|
Name: "Citizen Kane",
|
|
Year: 1941,
|
|
Genre: "Mystery",
|
|
Poster: "https://iris-go.com/images/examples/mvc-movies/3.jpg",
|
|
},
|
|
4: {
|
|
ID: 4,
|
|
Name: "The Wizard of Oz",
|
|
Year: 1939,
|
|
Genre: "Fantasy",
|
|
Poster: "https://iris-go.com/images/examples/mvc-movies/4.jpg",
|
|
},
|
|
5: {
|
|
ID: 5,
|
|
Name: "North by Northwest",
|
|
Year: 1959,
|
|
Genre: "Thriller",
|
|
Poster: "https://iris-go.com/images/examples/mvc-movies/5.jpg",
|
|
},
|
|
}
|