1 Star 0 Fork 0

whmmm/truss

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
handlers.go 1.29 KB
一键复制 编辑 原始数据 按行查看 历史
package templates
const HandlerMethods = `
{{ with $te := .}}
{{range $i := .Methods}}
// {{.Name}} implements Service.
func (s {{ToLower $te.ServiceName}}Service) {{.Name}}(ctx context.Context, in *pb.{{GoName .RequestType.Name}}) (*pb.{{GoName .ResponseType.Name}}, error){
var resp pb.{{GoName .ResponseType.Name}}
resp = pb.{{GoName .ResponseType.Name}}{
{{range $j := $i.ResponseType.Message.Fields -}}
// {{GoName $j.Name}}:
{{end -}}
}
return &resp, nil
}
{{end}}
{{- end}}
`
const Handlers = `
package handlers
import (
"context"
pb "{{.PBImportPath -}}"
)
// NewService returns a naïve, stateless implementation of Service.
func NewService() pb.{{GoName .Service.Name}}Server {
return {{ToLower .Service.Name}}Service{}
}
type {{ToLower .Service.Name}}Service struct{}
{{with $te := . }}
{{range $i := $te.Service.Methods}}
// {{$i.Name}} implements Service.
func (s {{ToLower $te.Service.Name}}Service) {{$i.Name}}(ctx context.Context, in *pb.{{GoName $i.RequestType.Name}}) (*pb.{{GoName $i.ResponseType.Name}}, error){
var resp pb.{{GoName $i.ResponseType.Name}}
resp = pb.{{GoName $i.ResponseType.Name}}{
{{range $j := $i.ResponseType.Message.Fields -}}
// {{GoName $j.Name}}:
{{end -}}
}
return &resp, nil
}
{{end}}
{{- end}}
`
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/whmmm/truss.git
git@gitee.com:whmmm/truss.git
whmmm
truss
truss
v0.1.0

搜索帮助

0d507c66 1850385 C8b1a773 1850385