diff options
Diffstat (limited to 'proto/ubootenv.proto')
| -rw-r--r-- | proto/ubootenv.proto | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/proto/ubootenv.proto b/proto/ubootenv.proto new file mode 100644 index 0000000..ad201da --- /dev/null +++ b/proto/ubootenv.proto @@ -0,0 +1,12 @@ +syntax = "proto3"; + +package unit.info.v0; + +message EnvVar { + string name = 1; + string value = 2; +} + +message UbootEnv { + repeated EnvVar vars = 1; +} |
