diff options
| author | Jeff Carr <[email protected]> | 2025-10-20 10:46:39 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-20 10:46:39 -0500 |
| commit | 1f60db15aa0c8618636f027ca1e81a5009429c27 (patch) | |
| tree | a162d75947aab1e02987c3bd9faa4591b007cc11 /key.proto | |
day1v0.0.1
Diffstat (limited to 'key.proto')
| -rw-r--r-- | key.proto | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/key.proto b/key.proto new file mode 100644 index 0000000..7ee7a1f --- /dev/null +++ b/key.proto @@ -0,0 +1,16 @@ +// Copyright 2025 WIT.COM Inc Licensed GPL 3.0 + +syntax = "proto3"; + +package ENV; + +message Key { // + string var = 1; // ENV var name `autogenpb:unique` `autogenpb:sort` + string value = 2; // ENV value name +} + +message Keys { // `autogenpb:marshal` `autogenpb:nomutex` + string uuid = 1; // `autogenpb:uuid:7a8aaf7f-9851-42f0-89eb-434d2e51f5bb` + string version = 2; // `autogenpb:version:v0.0.1 go.wit.com/lib/ENV` + repeated Key keys = 3; +} |
