diff options
| author | Jeff Carr <[email protected]> | 2025-10-07 00:06:11 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-07 00:06:11 -0500 |
| commit | 4ac9068e29207cc15b7ec5bfde8d0380339b2b1f (patch) | |
| tree | 4a05b433c0628889d1b5a393d63274521a645d26 /event.proto | |
| parent | e6fb7352ae3b5e492880a301a2aff5f728302c09 (diff) | |
add pb.Save() and pb.Load()v0.2.52
Diffstat (limited to 'event.proto')
| -rw-r--r-- | event.proto | 5 |
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 |
