0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-12-22 17:51:53 +00:00
bird/yang/command.yang

19 lines
217 B
YANG
Raw Permalink Normal View History

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