summaryrefslogtreecommitdiff
path: root/vendor/bundle/ruby/3.4.0/gems/rouge-4.5.2/lib/rouge/demos/yang
blob: c68ff7bf4503d9f35058850754c5c71672ba118b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module petstore {
    namespace "http://autlan.dt/gribok/yang/example";
    prefix ex;

    revision 2020-04-01 {
        description "Example yang";
    }

    container pets {
        list dogs {
            key name;
            leaf name {
                type string;
            }
        }
    }
}