AppFlowy/rust-lib/flowy-observable/src/protobuf/proto/subject.proto

10 lines
206 B
Protocol Buffer
Raw Normal View History

2021-07-21 07:43:05 +00:00
syntax = "proto3";
message ObservableSubject {
string category = 1;
int32 ty = 2;
2021-09-07 09:12:03 +00:00
string id = 3;
oneof one_of_payload { bytes payload = 4; };
oneof one_of_error { bytes error = 5; };
2021-07-21 07:43:05 +00:00
}