From 4db2957d5c9f6d7238d3a6071f7497c98ff54a04 Mon Sep 17 00:00:00 2001 From: civitarese Date: Thu, 4 Apr 2019 23:26:09 +0200 Subject: [PATCH] Removing wrong comments --- src/main/proto/ChatService.proto | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/main/proto/ChatService.proto b/src/main/proto/ChatService.proto index 7e8e9ee..d04406c 100644 --- a/src/main/proto/ChatService.proto +++ b/src/main/proto/ChatService.proto @@ -1,21 +1,13 @@ syntax = "proto3"; package com.example.chat; -// Request payload message ChatMessage { - // Each message attribute is strongly typed. - // You also must assign a "tag" number. - // Each tag number is unique within the message. + string from = 1; - // This defines a strongly typed list of String string message = 2; - // There are many more basics types, like Enum, Map - // See https://developers.google.com/protocol-buffers/docs/proto3 - // for more information. } -// Defining a Service, a Service can have multiple RPC operations service ChatService { rpc chat(stream ChatMessage) returns (stream ChatMessage); -- 2.18.1