2022-02-19 09:22:21 +00:00
|
|
|
""" Contains all the data models used in inputs/outputs """
|
|
|
|
|
|
|
|
{% for import in imports | sort %}
|
|
|
|
{{ import }}
|
|
|
|
{% endfor %}
|
2023-01-13 18:21:38 +00:00
|
|
|
|
|
|
|
{% if imports %}
|
|
|
|
__all__ = (
|
|
|
|
{% for all in alls | sort %}
|
|
|
|
"{{ all }}",
|
|
|
|
{% endfor %}
|
|
|
|
)
|
|
|
|
{% endif %}
|