|
|
|
@ -24,7 +24,7 @@ import (
|
|
|
|
|
{{.ImportPackages}}
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func {{.HandlerName}}(ctx *svc.ServiceContext) http.HandlerFunc {
|
|
|
|
|
func {{.HandlerName}}(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
|
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
{{if .HasRequest}}var req types.{{.RequestType}}
|
|
|
|
|
if err := httpx.Parse(r, &req); err != nil {
|
|
|
|
@ -32,7 +32,7 @@ func {{.HandlerName}}(ctx *svc.ServiceContext) http.HandlerFunc {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
{{end}}l := {{.LogicName}}.New{{.LogicType}}(r.Context(), ctx)
|
|
|
|
|
{{end}}l := {{.LogicName}}.New{{.LogicType}}(r.Context(), svcCtx)
|
|
|
|
|
{{if .HasResp}}resp, {{end}}err := l.{{.Call}}({{if .HasRequest}}req{{end}})
|
|
|
|
|
if err != nil {
|
|
|
|
|
httpx.Error(w, err)
|
|
|
|
|