This commit is contained in:
Asim Aslam
2020-10-02 11:13:01 +01:00
commit 61fe9c169b
62 changed files with 4428 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
syntax = "proto3";
package comments;
service Comments {
rpc Save(Request) returns (Response) {}
}
message Request {
// post to comment on
string post_id = 1;
// message to leave
string message = 2;
}
message Response {}