| from fastapi import FastAPI | |
| from src.handlers import router | |
| def get_application() -> FastAPI: | |
| application = FastAPI() | |
| application.include_router(router) | |
| return application | |
| app = get_application() | |
| from fastapi import FastAPI | |
| from src.handlers import router | |
| def get_application() -> FastAPI: | |
| application = FastAPI() | |
| application.include_router(router) | |
| return application | |
| app = get_application() | |