summaryrefslogtreecommitdiff
path: root/key.proto
diff options
context:
space:
mode:
Diffstat (limited to 'key.proto')
-rw-r--r--key.proto4
1 files changed, 2 insertions, 2 deletions
diff --git a/key.proto b/key.proto
index ab22c91..f6e187d 100644
--- a/key.proto
+++ b/key.proto
@@ -7,11 +7,11 @@ package ENV;
message Key { //
string var = 1; // ENV var name `autogenpb:unique` `autogenpb:sort`
string value = 2; // ENV value name
- bool global = 3; // was defined in application OS settings
+ string global = 3; // where ENV was defined in application OS settings
string help = 4; // text for explaining the ENV key/value
}
-message Keys { // `autogenpb:marshal` `autogenpb:nomutex`
+message Keys { // `autogenpb:marshal` `autogenpb:nomutex` `autogenpb:gui`
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;