summaryrefslogtreecommitdiff
path: root/key.proto
blob: 7ee7a1f311fcd2c5206119311218177d167a6cf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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;
}