summaryrefslogtreecommitdiffstats
path: root/netconf/restconf/restconf-nb-bierman02/src/test/resources/nn-to-xml/data-of-several-modules/yang/module1.yang
blob: 72a82caec4faa7415fc3d12a915150b0c4e27c53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module module1 {
  namespace "module:one";  

  prefix "m1";
  revision 2014-01-17 {    
  }

    container cont_m1 {
        leaf lf1_m1 {
            type string;
        }
        uses confB_gr;
    }
    
    grouping confB_gr {
        container contB_m1 {
        }
    }
  
}