Standalone yang library data writer
[netconf.git] / netconf / mdsal-netconf-yang-library / src / test / resources / test-module.yang
1 module test-module {
2     yang-version 1;
3     namespace "test:namespace";
4     prefix "tt";
5
6     include test-submodule;
7
8     description
9         "Types for testing";
10
11     revision "2013-07-22";
12
13
14     container c {
15         leaf a {
16             type string;
17         }
18     }
19
20 }