We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2d110d commit 10b827eCopy full SHA for 10b827e
packages/backend-server/app/api/v1/web/api.py
@@ -6,7 +6,7 @@
6
from app.api.v1.web.user import api as user_router
7
from app.api.v1.web.secrets import api as secrets_router
8
from app.api.v1.web.dashboard import api as dashboard_router
9
-
+from app.api.v1.web.drive import api as drive_router
10
api_router = APIRouter()
11
12
api_router.prefix = "/web"
@@ -18,3 +18,5 @@
18
api_router.include_router(user_router.router, tags=["User"])
19
api_router.include_router(workspace_router.router, tags=["Workspace"])
20
api_router.include_router(dashboard_router.router, tags=["Dashboard"])
21
+api_router.include_router(drive_router.router)
22
+
0 commit comments