blob: 2f0616e59955b7d3d54436ab2aa4a83ba7b25448 [file] [log] [blame]
Gaurav Agrawal56527662016-04-20 15:49:17 +05301module Sfc {
2 yang-version 1;
3 namespace http://huawei.com;
4 prefix Ant;
VinodKumarS-Huaweicb3a1f52016-05-10 17:58:57 +05305 leaf test{
6 type string;
7 }
8 container my-container{
9 leaf my-val{
10 type string;
11 }
12 }
Gaurav Agrawal56527662016-04-20 15:49:17 +053013 rpc SFP {
14 input {
15 leaf port {
16 type string;
17 }
18 }
19 output {
20 leaf path {
21 type string;
22 }
23 }
24 }
25}