feat: routers client and version prefixes

This commit is contained in:
2025-10-17 21:40:54 +04:00
parent 6b1b4109c6
commit d7c7d1775f
22 changed files with 4 additions and 5 deletions

View File

@ -36,7 +36,6 @@ async def unicorn_exception_handler(request: Request, exc: ObjectNotFoundExcepti
return JSONResponse(status_code=404, content={"detail": exc.name})
auto_include_routers(app, routers)
auto_include_routers(app, modules, True)
auto_include_routers(app, routers, True)
app.mount("/static", StaticFiles(directory="static"), name="static")