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 5aa1968657 - Show all commits

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

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