The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#) https://grpc.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
229 B

syntax = "proto3";
package grpc_tools.complicated;
import "grpc_tools/simplest.proto";
message ComplicatedMessage {
bool yes = 1;
bool no = 2;
bool why = 3;
grpc_tools.simplest.SimplestMessage simplest_message = 4;
};