move slide things to /google

This commit is contained in:
Krishav Raj Singh 2025-08-30 09:25:36 +05:30
parent 399d18f9ce
commit ace66c063a
3 changed files with 2 additions and 2 deletions

View File

@ -185,7 +185,7 @@ api_router.include_router(admin_api.router)
from composio_integration import api as composio_api
api_router.include_router(composio_api.router)
from google_slides_api import router as google_slides_router
from google.google_slides_api import router as google_slides_router
api_router.include_router(google_slides_router)
@api_router.get("/health")

View File

@ -22,7 +22,7 @@ from pydantic import BaseModel, Field
from utils.auth_utils import get_current_user_id_from_jwt
from utils.logger import logger
from services.supabase import DBConnection
from google_slides_service import GoogleSlidesService, OAuthTokenService
from .google_slides_service import GoogleSlidesService, OAuthTokenService
# ================== PYDANTIC MODELS ==================