Skip to content

Commit

Permalink
remove development router
Browse files Browse the repository at this point in the history
  • Loading branch information
jacopo-exact committed Sep 14, 2022
1 parent f53c569 commit 25025bd
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions fractal_server/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,11 @@ def collect_routers(app: FastAPI) -> None:
from .app.api import router_default
from .app.api import router_v1
from .app.security import auth_router
from .app.ui import router as ui_router

app.include_router(router_default, prefix="/api")
app.include_router(router_v1, prefix="/api/v1")
app.include_router(auth_router, prefix="/auth", tags=["auth"])

app.include_router(ui_router)


async def __on_startup():
from .app.api.v1.task import collect_tasks_headless
Expand Down

0 comments on commit 25025bd

Please sign in to comment.