Files
go-zero/tools/goctl/model/sql/gen/imports.go
2020-08-12 14:09:49 +08:00

19 lines
398 B
Go

package gen
import (
"github.com/tal-tech/go-zero/tools/goctl/model/sql/template"
"github.com/tal-tech/go-zero/tools/goctl/util/templatex"
)
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
}