mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-12-22 09:41:54 +00:00
19 lines
217 B
YANG
19 lines
217 B
YANG
module command {
|
|
|
|
namespace "command";
|
|
|
|
prefix "command";
|
|
|
|
container do {
|
|
leaf command {
|
|
type uint32;
|
|
}
|
|
list args {
|
|
key "arg";
|
|
leaf arg {
|
|
type string;
|
|
}
|
|
}
|
|
}
|
|
}
|