0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2025-03-21 13:57:04 +00:00
bird/yang/command.yang

20 lines
233 B
YANG
Raw Normal View History

module command {
namespace ".";
prefix "command";
container do {
leaf command {
mandatory true;
type uint32;
}
list args {
key "arg";
leaf arg {
type string;
}
}
}
}