iris/_examples/mvc/overview/models
2017-10-12 03:51:06 +03:00
..
README.md Update to version 8.5.2 | Read HISTORY.md: https://github.com/kataras/iris/blob/master/HISTORY.md#th-12-october-2017--v852 2017-10-12 03:51:06 +03:00

Domain Models

There should be the domain/business-level models.

Example:

import "github.com/kataras/iris/_examples/mvc/overview/datamodels"

type Movie struct {
    datamodels.Movie
}

func (m Movie) Validate() (Movie, error) {
    /* do some checks and return an error if that Movie is not valid */
}

However, we will use the "datamodels" as the only one models package because Movie structure we don't need any extra functionality or validation inside it.