mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-05-14 02:10:00 +08:00
reactor sql generation
This commit is contained in:
@@ -1,9 +1,18 @@
|
||||
package gen
|
||||
|
||||
import (
|
||||
sqltemplate "github.com/tal-tech/go-zero/tools/goctl/model/sql/template"
|
||||
"github.com/tal-tech/go-zero/tools/goctl/model/sql/template"
|
||||
"github.com/tal-tech/go-zero/tools/goctl/util/templatex"
|
||||
)
|
||||
|
||||
func genImports() string {
|
||||
return sqltemplate.Imports
|
||||
func genImports(withCache bool) (string, error) {
|
||||
output, err := templatex.With("import").
|
||||
Parse(template.Imports).
|
||||
Execute(map[string]interface{}{
|
||||
"withCache": withCache,
|
||||
})
|
||||
if err != nil {
|
||||
return "", err
|
||||
}
|
||||
return output.String(), nil
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user