feat: add data ingest

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2024-08-10 00:54:10 +02:00
parent 5395e8bb1e
commit 3c5c5759ca
11 changed files with 1126 additions and 13 deletions

20
proto/nomicon.proto Normal file
View File

@@ -0,0 +1,20 @@
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 {
}