Merge pull request #45 from lbryio/comments

add comments to supports
This commit is contained in:
Victor Shyba 2021-06-02 17:05:56 -03:00 committed by GitHub
commit e741df19b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,10 +4,10 @@ package pb;
message Support {
string emoji = 1;
string comment = 2;
/*
oneof type {
Edit edit = 1;
Comment comment = 2;
}
*/
}
@ -17,8 +17,4 @@ message Edit {
string key = 1;
string value = 2;
}
message Comment {
string body = 1;
}
*/