Skip to content

Commit

Permalink
remove echo router
Browse files Browse the repository at this point in the history
  • Loading branch information
siwonKH committed Dec 18, 2023
1 parent f581cd2 commit 9bea184
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 31 deletions.
4 changes: 0 additions & 4 deletions sowonpass_backend/web/api/echo/__init__.py

This file was deleted.

7 changes: 0 additions & 7 deletions sowonpass_backend/web/api/echo/schema.py

This file was deleted.

18 changes: 0 additions & 18 deletions sowonpass_backend/web/api/echo/views.py

This file was deleted.

3 changes: 1 addition & 2 deletions sowonpass_backend/web/api/router.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
from fastapi.routing import APIRouter

from sowonpass_backend.web.api import auth, docs, echo, monitoring, user
from sowonpass_backend.web.api import auth, docs, monitoring, user
from sowonpass_backend.web.api import verification_process as process

api_router = APIRouter()
api_router.include_router(monitoring.router)
api_router.include_router(docs.router)
api_router.include_router(echo.router, prefix="/echo", tags=["echo"])
api_router.include_router(user.router, prefix="/user", tags=["user"])
api_router.include_router(process.router, prefix="/process", tags=["process"])
api_router.include_router(auth.router, prefix="/auth", tags=["auth"])

0 comments on commit 9bea184

Please sign in to comment.