0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2025-01-08 01:51:54 +00:00
bird/yang/command.yang

19 lines
217 B
YANG
Raw Normal View History

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