aboutsummaryrefslogtreecommitdiff
path: root/HelloGrpc/hello.proto
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2018-02-04 22:23:23 +0100
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2018-02-04 22:27:29 +0100
commita8760944a08519edc0f74a33c396d5a6053de5e9 (patch)
tree36369db6b48f4f8a729077ce103fc5e2e062a145 /HelloGrpc/hello.proto
Initial version.
Diffstat (limited to 'HelloGrpc/hello.proto')
-rw-r--r--HelloGrpc/hello.proto14
1 files changed, 14 insertions, 0 deletions
diff --git a/HelloGrpc/hello.proto b/HelloGrpc/hello.proto
new file mode 100644
index 0000000..8776dd7
--- /dev/null
+++ b/HelloGrpc/hello.proto
@@ -0,0 +1,14 @@
+syntax = "proto3";
+
+package HelloNet.Api;
+
+service HelloSayer {
+ rpc SayHello(HelloRequest) returns (HelloResponse) {}
+}
+
+message HelloRequest {
+ string greetee = 1;
+}
+
+message HelloResponse {
+}