crunch/crates/crunch-envelope/src/envelope.proto
kjuulh 41f36c09be
feat: with protobuf
Signed-off-by: kjuulh <contact@kjuulh.io>
2023-09-19 08:31:13 +02:00

16 lines
236 B
Protocol Buffer

syntax = "proto3";
package crunch.envelope;
message Envelope {
Metadata metadata = 1;
bytes content = 2;
}
message Metadata {
string domain = 1;
string entity = 2;
uint64 timestamp = 3;
uint64 sequence = 4;
}