Skip to content

Commit

Permalink
Added comments (#329)
Browse files Browse the repository at this point in the history
Co-authored-by: pratheekshasn <[email protected]>
  • Loading branch information
AndrewHeim and pratheekshasn authored Jan 10, 2024
1 parent 34ad2a2 commit 5c1cbb6
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion examples/protos/helloworld.proto
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,19 @@
// See the License for the specific language governing permissions and
// limitations under the License.

// This line is required, as it specifies the version of the .proto file format
syntax = "proto3";

// These are language-specific directives, optional but common in grpc .proto files.
// Specifically for java code generation in this case - LabVIEW doesn't care about them.
// For LabVIEW-only projects, they can be removed, but may be useful when interoperating with other languages.
// As of now, grpc-labview has no such langaguage directives defined for LabVIEW.
option java_multiple_files = true;
option java_package = "io.grpc.examples.helloworld";
option java_outer_classname = "HelloWorldProto";
option objc_class_prefix = "HLW";

// This option provides namespace scoping for the items in this file
package helloworld;

// The greeting service definition.
Expand All @@ -35,4 +41,4 @@ message HelloRequest {
// The response message containing the greetings
message HelloReply {
string message = 1;
}
}

0 comments on commit 5c1cbb6

Please sign in to comment.