mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2025-03-21 13:57:04 +00:00
20 lines
233 B
YANG
20 lines
233 B
YANG
|
module command {
|
||
|
|
||
|
namespace ".";
|
||
|
|
||
|
prefix "command";
|
||
|
|
||
|
container do {
|
||
|
leaf command {
|
||
|
mandatory true;
|
||
|
type uint32;
|
||
|
}
|
||
|
list args {
|
||
|
key "arg";
|
||
|
leaf arg {
|
||
|
type string;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|