summaryrefslogtreecommitdiff
path: root/event.proto
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-07 00:06:11 -0500
committerJeff Carr <[email protected]>2025-10-07 00:06:11 -0500
commit4ac9068e29207cc15b7ec5bfde8d0380339b2b1f (patch)
tree4a05b433c0628889d1b5a393d63274521a645d26 /event.proto
parente6fb7352ae3b5e492880a301a2aff5f728302c09 (diff)
add pb.Save() and pb.Load()v0.2.52
Diffstat (limited to 'event.proto')
-rw-r--r--event.proto5
1 files changed, 3 insertions, 2 deletions
diff --git a/event.proto b/event.proto
index 084d665..1c9d2a5 100644
--- a/event.proto
+++ b/event.proto
@@ -10,8 +10,9 @@ import "droplet.proto";
message Events { // `autogenpb:marshal` `autogenpb:gui`
string uuid = 1; // `autogenpb:uuid:1e3a50c7-5916-4423-b33c-f0b977a7e446`
string version = 2; // `autogenpb:version:v0.0.1`
- int64 eventSize = 3; // max events to store in a single
- repeated Event events = 4; // all the events
+ repeated Event events = 3; // all the events
+ string filename = 4; // `autogenpb:save` -- this enables autogenerated pb.Load() and pb.Save()
+ int64 eventSize = 5; // max events to store in a single
}
// this information leans towards being human readable not programatic