Files
go-zero/tools/goctl/model/mongo/template/template.go

12 lines
259 B
Go
Raw Normal View History

package template
import _ "embed"
// Text provides the default template for model to generate.
//go:embed model.tpl
var Text string
2021-03-12 23:08:04 +08:00
// Error provides the default template for error definition in mongo code generation.
//go:embed error.tpl
var Error string