docs: remove invalid token route

pull/12/head
Cullen 2023-07-09 18:48:48 -05:00
parent b5c5e7d512
commit 853a35f0f3
1 changed files with 0 additions and 2 deletions

View File

@ -1,8 +1,6 @@
from fastapi import APIRouter, Depends
from .jobs import router as jobs_router
from api.auth.token import router as token_router
from api.auth.auth_utils import get_active_current_user
router = APIRouter(prefix="/v1", dependencies=[Depends(get_active_current_user)])
router.include_router(jobs_router)
router.include_router(token_router)