route/vendor/github.com/hashicorp/go-plugin/grpc_broker.proto

15 lines
222 B
Protocol Buffer
Raw Normal View History

2018-01-20 17:57:11 +00:00
syntax = "proto3";
package plugin;
message ConnInfo {
uint32 service_id = 1;
string network = 2;
string address = 3;
}
service GRPCBroker {
rpc StartStream(stream ConnInfo) returns (stream ConnInfo);
}