Spaces:
Sleeping
Sleeping
Commit
·
0c46d34
1
Parent(s):
f5c3d9c
chore: remove chat router from API router and update related files for cleaner structure
Browse files
backend/app/api/v1/__pycache__/router.cpython-311.pyc
CHANGED
Binary files a/backend/app/api/v1/__pycache__/router.cpython-311.pyc and b/backend/app/api/v1/__pycache__/router.cpython-311.pyc differ
|
|
backend/app/api/v1/router.py
CHANGED
@@ -1,10 +1,8 @@
|
|
1 |
from fastapi import APIRouter
|
2 |
|
3 |
from .endpoints.images import router as images_router
|
4 |
-
from .endpoints.chat import router as chat_router
|
5 |
|
6 |
api_router = APIRouter()
|
7 |
|
8 |
# Include all endpoint routers
|
9 |
api_router.include_router(images_router)
|
10 |
-
api_router.include_router(chat_router)
|
|
|
1 |
from fastapi import APIRouter
|
2 |
|
3 |
from .endpoints.images import router as images_router
|
|
|
4 |
|
5 |
api_router = APIRouter()
|
6 |
|
7 |
# Include all endpoint routers
|
8 |
api_router.include_router(images_router)
|
|
backend/app/services/__pycache__/image_service.cpython-311.pyc
CHANGED
Binary files a/backend/app/services/__pycache__/image_service.cpython-311.pyc and b/backend/app/services/__pycache__/image_service.cpython-311.pyc differ
|
|