remove proto comment

This commit is contained in:
Asim Aslam
2021-11-02 14:11:28 +00:00
parent 0fdf76da32
commit 615b24b9af

View File

@@ -10,8 +10,8 @@ service Mq {
rpc Subscribe(SubscribeRequest) returns (stream SubscribeResponse) {} rpc Subscribe(SubscribeRequest) returns (stream SubscribeResponse) {}
} }
// Publish a message to the mq. Specify a topic to group messages for a specific topic. // Publish a message. Specify a topic to group messages for a specific topic.
message PublishRequest { message PublishReque st {
// The topic to publish to // The topic to publish to
string topic = 1; string topic = 1;
// The json message to publish // The json message to publish
@@ -26,7 +26,6 @@ message SubscribeRequest {
string topic = 1; string topic = 1;
} }
// A blocking mq will be returned in response.
message SubscribeResponse { message SubscribeResponse {
// The topic subscribed to // The topic subscribed to
string topic = 1; string topic = 1;