from fastapi import FastAPI def create_app() -> FastAPI: app = FastAPI(title="Live In-Lecture Quiz Portal") return app app = create_app()