parth036's picture
Upload folder using huggingface_hub
09cfb62 verified
Raw
History Blame Contribute Delete
337 Bytes
"""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