1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-19 02:47:04 +00:00

start the new mvc - binder

Former-commit-id: 37e56f409ca136700452fb8fbff740fcca3e98bf
This commit is contained in:
kataras
2017-11-23 12:43:29 +02:00
parent 907ba28f84
commit de69b2fba2
4 changed files with 322 additions and 0 deletions

11
mvc2/mvc.go Normal file
View File

@@ -0,0 +1,11 @@
package mvc2
import (
"errors"
)
var (
errNil = errors.New("nil")
errBad = errors.New("bad")
errAlreadyExists = errors.New("already exists")
)