blob: fda5442ca0b220277ae5c0f173749a56eff756d8 [file] [log] [blame]
aPiecek36f82232022-10-14 10:08:38 +02001module sm-rpcnotif {
2 yang-version 1.1;
3 namespace "urn:rpcnotif";
4 prefix "smrn";
5
6 container cont {
7 notification cn;
8 action cr {
9 input {
10 leaf in {
11 type string;
12 }
13 }
14 output {
15 leaf out {
16 type string;
17 }
18 }
19 }
20 }
21 rpc r1;
22 rpc r2;
23 notification n1;
24 notification n2;
25}