Compare commits

...

2 commits

Author SHA1 Message Date
Lex Berezhny
d7ea08a219 simplified support to just be a string as first value (emoji) 2020-06-05 13:30:01 -04:00
Lex Berezhny
5aa1968657 initial import of support proto 2020-06-05 12:40:59 -04:00

24
v2/proto/support.proto Normal file
View file

@ -0,0 +1,24 @@
syntax = "proto3";
package pb;
message Support {
string emoji = 1;
/*
oneof type {
Edit edit = 1;
Comment comment = 2;
}
*/
}
/*
message Edit {
string key = 1;
string value = 2;
}
message Comment {
string body = 1;
}
*/