10 lines
213 B
Smarty
10 lines
213 B
Smarty
type {{.StructName}} struct {
|
|
{{.ParentName}}
|
|
{{ .Name }} string
|
|
}
|
|
|
|
// {{.FuncName}} {{.Description}}.
|
|
func (i {{.ParentName}}) {{.FuncName}}(key string) {{.StructName}} {
|
|
return {{.StructName}}{i,key}
|
|
}
|