nodata/proto/nomicon.proto
kjuulh 3c5c5759ca
feat: add data ingest
Signed-off-by: kjuulh <contact@kjuulh.io>
2024-08-10 00:54:10 +02:00

21 lines
343 B
Protocol Buffer

syntax = "proto3";
import "google/protobuf/timestamp.proto";
package nodata;
service NoData {
rpc PublishEvent(PublishEventRequest) returns (PublishEventResponse) {}
}
message PublishEventRequest {
string topic = 1;
google.protobuf.Timestamp published = 2;
string key = 3;
bytes value = 4;
}
message PublishEventResponse {
}