File: simple.yang

package info (click to toggle)
sysrepo 3.7.11-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 6,720 kB
  • sloc: ansic: 85,593; sh: 145; makefile: 29
file content (17 lines) | stat: -rw-r--r-- 277 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module simple {
    namespace s;
    prefix s;

    container ac1 {
        leaf acd1 {
            type boolean;
            default true;
        }
        list acl1 {
            key acs1;
            leaf acs1 {
                type string;
            }
        }
    }
}