aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/hashicorp/go-plugin/grpc_broker.proto
diff options
context:
space:
mode:
authorNathan Dench <ndenc2@gmail.com>2019-05-24 15:16:44 +1000
committerNathan Dench <ndenc2@gmail.com>2019-05-24 15:16:44 +1000
commit107c1cdb09c575aa2f61d97f48d8587eb6bada4c (patch)
treeca7d008643efc555c388baeaf1d986e0b6b3e28c /vendor/github.com/hashicorp/go-plugin/grpc_broker.proto
parent844b5a68d8af4791755b8f0ad293cc99f5959183 (diff)
downloadterraform-provider-statuscake-107c1cdb09c575aa2f61d97f48d8587eb6bada4c.tar.gz
terraform-provider-statuscake-107c1cdb09c575aa2f61d97f48d8587eb6bada4c.tar.zst
terraform-provider-statuscake-107c1cdb09c575aa2f61d97f48d8587eb6bada4c.zip
Upgrade to 0.12
Diffstat (limited to 'vendor/github.com/hashicorp/go-plugin/grpc_broker.proto')
-rw-r--r--vendor/github.com/hashicorp/go-plugin/grpc_broker.proto14
1 files changed, 0 insertions, 14 deletions
diff --git a/vendor/github.com/hashicorp/go-plugin/grpc_broker.proto b/vendor/github.com/hashicorp/go-plugin/grpc_broker.proto
deleted file mode 100644
index f578348..0000000
--- a/vendor/github.com/hashicorp/go-plugin/grpc_broker.proto
+++ /dev/null
@@ -1,14 +0,0 @@
1syntax = "proto3";
2package plugin;
3
4message ConnInfo {
5 uint32 service_id = 1;
6 string network = 2;
7 string address = 3;
8}
9
10service GRPCBroker {
11 rpc StartStream(stream ConnInfo) returns (stream ConnInfo);
12}
13
14