File: mapmessage.proto

package info (click to toggle)
python-aristaproto 1.2%2Breally0.1.4-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,600 kB
  • sloc: python: 6,521; java: 106; xml: 84; makefile: 6
file content (11 lines) | stat: -rw-r--r-- 129 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
syntax = "proto3";

package mapmessage;

message Test {
  map<string, Nested> items = 1;
}

message Nested {
  int32 count = 1;
}