Versions in this module Expand all Collapse all v0 v0.1.1 Jun 11, 2020 Changes in this version + var Router *router = &router + type Binder struct + func (*Binder) Bind(i interface{}, c echo.Context) (err error) + type Database struct + var DB *Database = &Database{} + func (d *Database) Connect() + func (d *Database) Migrate() + type HomeController struct + type ResourceController interface + Create func(echo.Context) error + Delete func(echo.Context) error + List func(echo.Context) error + Show func(echo.Context) error + Update func(echo.Context) error + type User struct + FirstName string + LastName string + type UserController struct + func (UserController) List(c echo.Context) error + func (u UserController) Create(c echo.Context) error + func (u UserController) Show(c echo.Context) error + type Validator struct + func (v *Validator) Validate(i interface{}) error