blob: 5a3f92fa0687d34bd2e0011410fb74512a7c169c [file] [log] [blame]
aPiecek6ff46712023-04-18 11:00:52 +02001module modaction {
2 yang-version 1.1;
3 namespace "urn:yanglint:modaction";
4 prefix ma;
5
6 container con {
7 list ls {
8 key "lfkey";
9 leaf lfkey {
10 type string;
11 }
12 action act {
13 input {
14 leaf lfi {
15 type string;
16 }
17 }
18 output {
19 leaf lfo {
20 type int16;
21 }
22 }
23 }
24 }
25 }
26}