service.go 215 B

12345678910
  1. package parser
  2. import "github.com/emicklei/proto"
  3. // Service describes the rpc service, which is the relevant
  4. // content after the translation of the proto file
  5. type Service struct {
  6. *proto.Service
  7. RPC []*RPC
  8. }