protoc-gen-go-micro/examples/single-package-mode/output/bbb/service.go
Manfred Touron 36f4177b68
chore: lint
2019-01-19 20:01:03 +01:00

20 lines
491 B
Go

// file generated with protoc-gen-gotemplate
package bbb
import (
"fmt"
"golang.org/x/net/context"
"moul.io/protoc-gen-gotemplate/examples/single-package-mode/output/aaa"
)
type Service struct{}
func (service Service) Aaa(ctx context.Context, input *aaa.AaaRequest) (*aaa.AaaReply, error) {
return nil, fmt.Errorf("method not implemented")
}
func (service Service) Bbb(ctx context.Context, input *BbbRequest) (*BbbReply, error) {
return nil, fmt.Errorf("method not implemented")
}