added protos,backend/hello,backend/envoy + compose setup

This commit is contained in:
Patrik Oldsberg
2020-02-03 14:50:22 +01:00
committed by Patrik Oldsberg
parent 42cb257354
commit 0ee6f06d3d
16 changed files with 2007 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
syntax = "proto3";
package spotify.backstage.hello.v1alpha1;
service Hello {
rpc Hello(HelloRequest) returns (HelloReply);
}
message HelloRequest {
string name = 1;
}
message HelloReply {
string message = 1;
}