2021-07-21 15:43:05 +08:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
message ObservableSubject {
|
|
|
|
string category = 1;
|
|
|
|
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
|
|
|
}
|