quart-imp/app/blueprints/www/__init__.py
David Carmichael 9687db5a96 Initial commit
2024-02-11 21:59:18 +00:00

11 lines
168 B
Python

from quart_imp import Blueprint
bp = Blueprint(__name__)
bp.import_resources("routes")
@bp.before_app_request
async def before_app_request():
bp.init_session()