summaryrefslogtreecommitdiffstats
path: root/tests/yanglint/modules/modconfig-augment.yang
blob: d94b366947c5452e5036e82ebe0c20a2aa39d279 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module modconfig-augment {
  yang-version 1.1;
  namespace "urn:yanglint:modconfig-augment";
  prefix "mca";

  import modconfig {
    prefix mc;
  }

  augment "/mc:mcc" {
    leaf alf {
      type string;
    }
  }
}