proto-file-parser 0.1.1

A Protocol Buffer Definition (.proto) parser that converts proto files to JSON format
Documentation
1
2
3
4
5
6
7
syntax = "proto3";

message Test {
  string name = 1;
  int32 age = 2;
  repeated string hobbies = 3;
}