support api templates
This commit is contained in:
11
tools/goctl/templatex/head.go
Normal file
11
tools/goctl/templatex/head.go
Normal file
@@ -0,0 +1,11 @@
|
||||
package templatex
|
||||
|
||||
var headTemplate = `// Code generated by goctl. DO NOT EDIT!
|
||||
// Source: {{.source}}`
|
||||
|
||||
func GetHead(source string) string {
|
||||
buffer, _ := With("head").Parse(headTemplate).Execute(map[string]interface{}{
|
||||
"source": source,
|
||||
})
|
||||
return buffer.String()
|
||||
}
|
||||
Reference in New Issue
Block a user