You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
463 B
Go
24 lines
463 B
Go
4 years ago
|
package gen
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
"text/template"
|
||
|
|
||
|
sqltemplate "zero/tools/goctl/model/sql/template"
|
||
|
)
|
||
|
|
||
|
func genImports(table *InnerTable) (string, error) {
|
||
|
t, err := template.New("imports").Parse(sqltemplate.Imports)
|
||
|
if err != nil {
|
||
|
return "", err
|
||
|
}
|
||
|
importBuffer := new(bytes.Buffer)
|
||
|
err = t.Execute(importBuffer, map[string]interface{}{
|
||
|
"containsCache": table.ContainsCache,
|
||
|
})
|
||
|
if err != nil {
|
||
|
return "", err
|
||
|
}
|
||
|
return importBuffer.String(), nil
|
||
|
}
|