1syntax = "proto3";
2
3package test;
4
5// This comment will be removed.
6service Service1 {
7  // This comment will be removed.
8  rpc Rpc1(Input1) returns (Output1);
9  // This comment will not be removed.
10  rpc Rpc2(Input2) returns (Output2);
11}
12
13// This comment will not be removed.
14service Service2 {
15  // This comment will not be removed.
16  rpc Rpc(Input1) returns (Output1);
17}
18
19// This comment will be removed.
20message Input1 {}
21
22// This comment will not be removed.
23message Input2 {}
24
25// This comment will be removed.
26message Output1 {}
27
28// This comment will not be removed.
29message Output2 {}
30