Files
go-zero/tools/goctl/model/sql/template/errors.go

12 lines
144 B
Go
Raw Normal View History

2020-08-12 09:19:37 +08:00
package template
2020-07-29 17:11:41 +08:00
var Error = `package model
2020-08-08 16:40:10 +08:00
import "github.com/tal-tech/go-zero/core/stores/sqlx"
2020-07-29 17:11:41 +08:00
var (
ErrNotFound = sqlx.ErrNotFound
)
`