blob: c1968a3cd19251779268ef8503db03fb9fa1eaed [file] [log] [blame]
surya-huawei5ccbac32017-07-27 12:24:18 +05301module hello {
2 yang-version 1;
3 namespace "urn:params:xml:ns:yang:hello";
4 prefix "hello";
5
6 revision "2015-01-05" {
7 description "Initial revision of hello model";
8 }
9
10 rpc hello-world {
11 input {
12 leaf x {
13 type string;
14 }
15 }
16
17 output {
18 leaf greeting {
19 type string;
20 }
21 }
22 }
23}