Api routes refactor

This commit is contained in:
marc
2025-07-28 22:45:45 +02:00
parent 6aad7a069e
commit 8cdb9340fd
26 changed files with 103 additions and 29 deletions

View File

@@ -0,0 +1,6 @@
from fastapi import APIRouter
from fastapi.responses import HTMLResponse
def get_router() -> APIRouter:
return APIRouter(default_response_class=HTMLResponse)