From 0778a12309ddf92a91995ad3d34f7dac1aa1873b Mon Sep 17 00:00:00 2001 From: Jongseo Lee Date: Wed, 24 Jul 2024 16:14:52 +0900 Subject: [PATCH] . --- app/routers/auth.py | 2 +- app/routers/jobs.py | 2 +- app/routers/users.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/routers/auth.py b/app/routers/auth.py index 7f26a44..cccdf27 100644 --- a/app/routers/auth.py +++ b/app/routers/auth.py @@ -9,7 +9,7 @@ from app.utils.auth import authenticate_user, create_access_token, get_current_user router = APIRouter( - prefix="/api/auth", + prefix="/auth", tags=["auth"], ) diff --git a/app/routers/jobs.py b/app/routers/jobs.py index ba3527b..31978b7 100644 --- a/app/routers/jobs.py +++ b/app/routers/jobs.py @@ -7,7 +7,7 @@ from typing import List, Optional, Dict router = APIRouter( - prefix="/api/jobs", + prefix="/jobs", tags=["jobs"], ) diff --git a/app/routers/users.py b/app/routers/users.py index 1802878..e7d563e 100644 --- a/app/routers/users.py +++ b/app/routers/users.py @@ -8,7 +8,7 @@ from typing import List, Optional router = APIRouter( - prefix="/api/users", + prefix="/users", tags=["users"], )