"""Application factory for the multimodal affect-screening app.""" from flask import Flask from .logging_config import configure_logging def create_app(): configure_logging() app = Flask(__name__) # templates/ and static/ live inside this package from .routes import main app.register_blueprint(main) return app