mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
10 lines
202 B
Protocol Buffer
10 lines
202 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message SubscribeObject {
|
|
string source = 1;
|
|
int32 ty = 2;
|
|
string id = 3;
|
|
oneof one_of_payload { bytes payload = 4; };
|
|
oneof one_of_error { bytes error = 5; };
|
|
}
|