mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-12 03:05:14 +00:00
18 lines
230 B
Protocol Buffer
18 lines
230 B
Protocol Buffer
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 {}
|