blob: 7fb39102fd987a37cc0862c838fb3991b2dfb072 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
module yc-yang-compiler-settings {
namespace "urn:yangcentral:yang:yang-compiler-settings";
prefix "ycs";
import ietf-inet {
prefix inet;
}
description "The definition about yang compiler settings.";
revision 2022-09-02 {
description "init version.";
}
container settings {
leaf local-repository {
type string;
description "The definition of local repository. It should be a local directory.
if not present, the default is ${user.home}/.yang";
}
}
}
|