mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-25 02:08:44 +08:00
12 lines
259 B
Go
12 lines
259 B
Go
package template
|
|
|
|
import _ "embed"
|
|
|
|
// Text provides the default template for model to generate.
|
|
//go:embed model.tpl
|
|
var Text string
|
|
|
|
// Error provides the default template for error definition in mongo code generation.
|
|
//go:embed error.tpl
|
|
var Error string
|