10 lines
204 B
Protocol Buffer
Raw Normal View History

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