Files
go-zero/tools/goctl/model/sql/gen/imports.go

14 lines
218 B
Go
Raw Normal View History

2020-07-29 17:11:41 +08:00
package gen
import (
2020-08-12 14:09:49 +08:00
"github.com/tal-tech/go-zero/tools/goctl/model/sql/template"
2020-07-29 17:11:41 +08:00
)
2020-08-16 23:28:01 +08:00
func genImports(withCache bool) string {
if withCache {
return template.Imports
} else {
return template.ImportsNoCache
2020-08-12 14:09:49 +08:00
}
2020-07-29 17:11:41 +08:00
}