template.go 259 B

1234567891011
  1. package template
  2. import _ "embed"
  3. // Text provides the default template for model to generate.
  4. //go:embed model.tpl
  5. var Text string
  6. // Error provides the default template for error definition in mongo code generation.
  7. //go:embed error.tpl
  8. var Error string