#!/usr/bin/env python3 """Entry point for fastapi app NOTE: - """ from app.core.config import settings from typing import Union from fastapi import FastAPI from app.api.clients.endpoints import router as clients_router app = FastAPI( title=settings.project_name, openapi_url=f"{settings.api_v1_str}/openapi.json" ) @app.get("/") def read_root(): """ """ return {"Hello": "World"} app.include_router(clients_router, tags=["clients"])