Instead of having fast__init__.py and flas__init__.py as separate files we can both templates in a single file and make them render based on condition statements that can be had inside jinja files.
Example:
{%if app_type == ""%}
render flask
{% else %}
render fast
{% endif %}