simplified support to just be a string as first value (emoji)

This commit is contained in:
Lex Berezhny 2020-06-05 13:30:01 -04:00
parent 5aa1968657
commit d7ea08a219

View file

@ -3,12 +3,16 @@ syntax = "proto3";
package pb;
message Support {
oneof type {
Edit edit = 1;
Comment comment = 2;
}
string emoji = 1;
/*
oneof type {
Edit edit = 1;
Comment comment = 2;
}
*/
}
/*
message Edit {
string key = 1;
string value = 2;
@ -17,3 +21,4 @@ message Edit {
message Comment {
string body = 1;
}
*/