diff options
author | John Estabrook <jestabro@vyos.io> | 2025-04-06 18:26:13 -0500 |
---|---|---|
committer | John Estabrook <jestabro@vyos.io> | 2025-04-11 13:32:31 -0500 |
commit | 9e8feea52140222c689af1439eb7be63a9e121da (patch) | |
tree | af6359113c97c8479d6a3b7b9d8f4fec58747fa5 /data | |
parent | ad2d932768734b492a54c728b459437056460668 (diff) | |
download | vyconf-9e8feea52140222c689af1439eb7be63a9e121da.tar.gz vyconf-9e8feea52140222c689af1439eb7be63a9e121da.zip |
T7321: add discard operation
Diffstat (limited to 'data')
-rw-r--r-- | data/vyconf.proto | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/data/vyconf.proto b/data/vyconf.proto index 5fc9f76..69bc1d4 100644 --- a/data/vyconf.proto +++ b/data/vyconf.proto @@ -34,6 +34,10 @@ message Request { repeated string Path = 1; } + message Discard { + optional int32 dummy = 1; + } + message Rename { repeated string EditLevel = 1; required string From = 2; @@ -149,6 +153,7 @@ message Request { Teardown teardown = 22; ReloadReftree reload_reftree = 23; Load load = 24; + Discard discard = 25; } } |