Initial Commit

This commit is contained in:
2021-06-03 14:48:02 +02:00
commit 370e41abab
15 changed files with 1070 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
syntax = "proto3";
option csharp_namespace = "Akari.Prototype.Server";
package greet;
// The greeting service definition.
service Greeter {
// Sends a greeting
rpc SayHello (HelloRequest) returns (HelloReply);
}
// The request message containing the user's name.
message HelloRequest {
string name = 1;
}
// The response message containing the greetings.
message HelloReply {
string message = 1;
}