File: pbtest.proto

package info (click to toggle)
golang-github-nats-io-go-nats 1.6.0%2Bgit20181112.9089d12-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 664 kB
  • sloc: sh: 14; makefile: 4
file content (11 lines) | stat: -rw-r--r-- 154 bytes parent folder | download | duplicates (5)
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;
}