summaryrefslogtreecommitdiffstats
path: root/tests/yanglint/modules/modconfig.yang
blob: 1d12ca60d40ae2fd3100a389181801028201c018 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
    }
  }
}