• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1edition = "2023";
2
3package proto_example;
4
5import "bar/bar.proto";
6
7message Foo {
8  int32 int = 1;
9  repeated int32 numbers = 2;
10  string name = 3;
11  Bar bar = 4;
12}
13