10 lines
263 B
Smarty
10 lines
263 B
Smarty
package {{.PackageName}}
|
|
|
|
import (
|
|
"context"
|
|
"{{.ProjectName}}/gen/go/service"
|
|
)
|
|
|
|
func (l *{{.StructName}}) {{.MethodName}}Logic({{range $index, $param := .Params}}{{if $index}}, {{end}}{{$param}}{{end}}) (resp {{.MethodReturn}},err error) {
|
|
return resp, err
|
|
} |