emulate nix fmt changes
All checks were successful
checks-impure / test (pull_request) Successful in 26s
checks / test (pull_request) Successful in 3m35s

This commit is contained in:
Georg-Stahn
2024-01-28 18:26:00 +01:00
parent 3828402865
commit dc04001dca

View File

@@ -6,12 +6,12 @@ from datetime import datetime
# Importing FastAPI and related components
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
from fastapi.responses import HTMLResponse, JSONResponse
# Importing configuration and schemas from the clan_cli package
import clan_cli.config as config
from clan_cli.webui.schemas import Resolution
from fastapi.middleware.cors import CORSMiddleware
# Creating FastAPI instances for different applications
app_dlg = FastAPI(swagger_ui_parameters={"tryItOutEnabled": True})
@@ -35,6 +35,7 @@ for app, port in apps:
allow_headers=["*"],
)
# Healthcheck endpoints for different applications
@app_c1.get("/")
async def root_c1() -> str: