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))) }