Files
sea-orm-generator/templates/model_mod.jinja
2025-04-12 14:06:12 +04:00

10 lines
191 B
Django/Jinja

{% if config.prelude %}
pub mod prelude;
{% endif%}
{% if entities_path == "super::_entities" %}
pub mod _entities;
{% endif %}
{% for table in tables %}
pub mod {{table.name}};
{% endfor %}