Async request response NCMP -> Client
[cps.git] / cps-service / src / test / resources / invalid-missing-import.yang
1 module test-module {
2     yang-version 1.1;
3
4     namespace "org:onap:cps:test:test-module";
5     revision "2020-02-02";
6     prefix "self";
7
8     import missing-module {
9         prefix "missing";
10     }
11
12     container self-container {
13         uses "missing:missing-group";
14     }
15 }