4b9116a5dd
This function allows you to prefix your field of type message with what you defined in the option go_package. Moreover it handles message embedded. In this commit, I rename gometalinter gas option in gosec.
40 lines
796 B
Go
40 lines
796 B
Go
// Code generated by protoc-gen-gotemplate
|
|
package company
|
|
|
|
import (
|
|
"github.com/moul/protoc-gen-gotemplate/examples/import/output/models/article"
|
|
"github.com/moul/protoc-gen-gotemplate/examples/import/output/models/common"
|
|
)
|
|
|
|
type Repository interface {
|
|
GetArticle(getarticle *common.GetArticle ) (*company.Article, []*company.Storage, error)
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ------------------------- Public SDK -----------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// GetArticle : proto: missing extension proto: missing extension
|
|
func (sdk *Sdk) GetArticle(ctx context.Context,
|
|
getarticle *article.GetArticle, token, requestID string)(article *article.Article, storages []*article.GetArticleResponse_Storage, err error) {
|
|
|
|
out := &pb.GetArticleResponse{}
|
|
_ = out
|
|
|
|
|
|
return out.Article, out.Storages, nil
|
|
|
|
}
|
|
|
|
|
|
|