Support proto #42

Merged
eukreign merged 2 commits from support_proto into master 2020-06-05 21:26:19 +02: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;
}
*/