Newer
Older
"""This is the PWS application initializer."""
Carlos Colin
committed
from fastapi import FastAPI
def create_app() -> FastAPI:
"""Initialize and configure the FastAPI application.
Returns:
FastAPI: The configured and initialized FastAPI application.
"""
Carlos Colin
committed
app = FastAPI()
return app
application = create_app()