File: test.proto

package info (click to toggle)
golang-github-gin-gonic-gin 1.8.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,276 kB
  • sloc: makefile: 75
file content (12 lines) | stat: -rw-r--r-- 239 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
package protoexample;

enum FOO {X=17;};

message Test {
   required string label = 1;
   optional int32 type = 2[default=77];
   repeated int64 reps = 3;
   optional group OptionalGroup = 4{
     required string RequiredField = 5;
   }
}