工具
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

33 lines
1.3 KiB

package servicegen
import (
"io/ioutil"
"text/template"
)
var (
apiTmpl *template.Template
apiPreTmpl *template.Template
apiTaskTmpl *template.Template
apiTestTmpl *template.Template
dbModelTmpl *template.Template
optionsTmpl *template.Template
externalTmpl *template.Template
)
func init() {
body, _ := ioutil.ReadFile("servicegen/tmpl/api.tmpl")
apiTmpl = template.Must(template.New("api.tmpl").Parse(string(body)))
body, _ = ioutil.ReadFile("servicegen/tmpl/api_pre.tmpl")
apiPreTmpl = template.Must(template.New("api_pre.tmpl").Parse(string(body)))
body, _ = ioutil.ReadFile("servicegen/tmpl/api_task.tmpl")
apiTaskTmpl = template.Must(template.New("api_task.tmpl").Parse(string(body)))
body, _ = ioutil.ReadFile("servicegen/tmpl/api_test.tmpl")
apiTestTmpl = template.Must(template.New("api_test.tmpl").Parse(string(body)))
body, _ = ioutil.ReadFile("servicegen/tmpl/db_model.tmpl")
dbModelTmpl = template.Must(template.New("db_model.tmpl").Parse(string(body)))
body, _ = ioutil.ReadFile("servicegen/tmpl/options.tmpl")
optionsTmpl = template.Must(template.New("options.tmpl").Parse(string(body)))
body, _ = ioutil.ReadFile("servicegen/tmpl/external.tmpl")
externalTmpl = template.Must(template.New("external.tmpl").Parse(string(body)))
}