From 45370bc04bcf161c947fcd1c6c6aab04d08bd60c Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Fri, 7 May 2021 18:09:46 +0100 Subject: [PATCH] comment the chats proto --- chats/proto/chats.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chats/proto/chats.proto b/chats/proto/chats.proto index e118018..41e2890 100644 --- a/chats/proto/chats.proto +++ b/chats/proto/chats.proto @@ -20,7 +20,7 @@ message Chat { string id = 1; // list of users in the chat repeated string user_ids = 2; - // RFC3339Nano timestamp + // RFC3339 Nano timestamp e.g 2006-01-02T15:04:05.999999999Z07:00 string created_at = 3; } @@ -33,7 +33,7 @@ message Message { string chat_id = 3; // text within the message string text = 4; - // RFC3339Nano timestamp + // RFC3339 Nano timestamp e.g 2006-01-02T15:04:05.999999999Z07:00 string sent_at = 5; }