Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
JongssLee committed Jul 24, 2024
1 parent dc4c724 commit 0778a12
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/routers/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
)

Expand Down
2 changes: 1 addition & 1 deletion app/routers/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from typing import List, Optional, Dict

router = APIRouter(
prefix="/api/jobs",
prefix="/jobs",
tags=["jobs"],
)

Expand Down
2 changes: 1 addition & 1 deletion app/routers/users.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from typing import List, Optional

router = APIRouter(
prefix="/api/users",
prefix="/users",
tags=["users"],
)

Expand Down

0 comments on commit 0778a12

Please sign in to comment.