Implement MVC

This commit is contained in:
Sung Won Cho 2021-01-03 17:51:57 +11:00
commit cd5d094c25
146 changed files with 13596 additions and 2328 deletions

View file

@ -0,0 +1,12 @@
package database
import (
"github.com/pkg/errors"
)
type modelError string
var (
// ErrNotFound an error that indicates that the given resource is not found
ErrNotFound error = errors.New("not found")
)