iris/_examples/mvc/using-method-result/models/movie.go

12 lines
222 B
Go
Raw Normal View History

// file: models/movie.go
package models
// Movie is our sample data structure.
type Movie struct {
Name string `json:"name"`
Year int `json:"year"`
Genre string `json:"genre"`
Poster string `json:"poster"`
}