-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
10 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,16 @@ | ||
from fastapi import APIRouter | ||
|
||
from .branch_management import router as branch_router | ||
from .commit_management import router as commit_router | ||
from .data_management import router as data_router | ||
from .owner_management import router as owner_router | ||
from .search import router as search_router | ||
from .table_management import router as table_router | ||
|
||
v1_router = APIRouter(prefix="/v1") | ||
v1_router.include_router(branch_router, tags=["Branch Management"]) | ||
v1_router.include_router(commit_router, tags=["Commit Management"]) | ||
v1_router.include_router(data_router, tags=["Data Management"]) | ||
v1_router.include_router(owner_router, tags=["Owner Management"]) | ||
v1_router.include_router(search_router, tags=["Search"]) | ||
v1_router.include_router(table_router, tags=["Table Management"]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters