1
0
Fork 0
libyang/tests/yanglint/modules/modconfig.yang

18 lines
258 B
YANG
Raw Permalink Normal View History

module modconfig {
namespace "urn:yanglint:modconfig";
prefix mc;
container mcc {
leaf lft {
type string;
config true;
mandatory true;
}
leaf lff {
type string;
config false;
mandatory true;
}
}
}