add generate heper config
All checks were successful
Go Action / goaction (pull_request) Successful in 4m52s

This commit is contained in:
2025-12-29 22:19:11 +03:00
parent 302af61012
commit 8d15b51248
30 changed files with 1046 additions and 570 deletions

View File

@@ -1,9 +1,9 @@
type {{.StructName}} struct {
{{.ParentName}}
{{.ParentStruct}}
{{ .Name }} string
}
// {{.FuncName}} {{.Description}}.
func (i {{.ParentName}}) {{.FuncName}}(key string) {{.StructName}} {
func (i {{.ParentStruct}}) {{.FuncName}}(key string) {{.StructName}} {
return {{.StructName}}{i,key}
}