File: pbtest.proto

package info (click to toggle)
golang-github-nats-io-go-nats 1.47.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,252 kB
  • sloc: sh: 13; makefile: 4
file content (11 lines) | stat: -rw-r--r-- 154 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
syntax = "proto3";

package testdata;

message Person {
  string name = 1;
  int32 age = 2;
  string address = 3;

  map<string, Person> children = 10;
}