Support proto #42

Merged
eukreign merged 2 commits from support_proto into master 2020-06-05 21:26:19 +02:00
Showing only changes of commit d7ea08a219 - Show all commits

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;
}
*/