summaryrefslogtreecommitdiff
path: root/examples/csv/templates/modules.csv
blob: 567dc43f7cbfb9ee986dfdd8e5800dfa6d47b9c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{# Copyright (c) Pelagicore AB 2016 #}
{% for module in system.modules %}
    {%- for interface in module.interfaces -%}
    SERVICE, {{module}}.{{interface}}
    {% endfor -%}
    {%- for struct in module.structs -%}
    STRUCT , {{module}}.{{struct}}
    {% endfor -%}
    {%- for enum in module.enums -%}
    ENUM   , {{module}}.{{enum}}
    {% endfor -%}
{% endfor %}