7a8bcffdf405f2e2dbdabe83dfb72e089e2dfd45
[netconf.git] / restconf / restconf-nb-bierman02 / src / test / resources / parser-identifier / invoke-rpc-module.yang
1 module invoke-rpc-module {
2   namespace "invoke:rpc:module";
3   prefix "inrpcmod";
4   yang-version 1;
5
6   revision 2017-05-23 {
7       description "Initial revision.";
8   }
9
10   rpc rpc-test {
11       input {
12           container cont {
13               leaf lf {
14                   type string;
15               }
16           }
17       }
18       output {
19           container cont-out {
20               leaf lf-out {
21                   type string;
22               }
23           }
24       }
25   }
26 }