lenticular_cloud2/specs/api_template/models_init.py.jinja

14 lines
233 B
Plaintext
Raw Normal View History

""" Contains all the data models used in inputs/outputs """
{% for import in imports | sort %}
{{ import }}
{% endfor %}
{% if imports %}
__all__ = (
{% for all in alls | sort %}
"{{ all }}",
{% endfor %}
)
{% endif %}