proto.go 222 B

12345678910111213
  1. package parser
  2. // Proto describes a proto file,
  3. type Proto struct {
  4. Src string
  5. Name string
  6. Package Package
  7. PbPackage string
  8. GoPackage string
  9. Import []Import
  10. Message []Message
  11. Service Service
  12. }