diff --git a/backend/app/routers/test.py b/backend/app/routers/test.py deleted file mode 100644 index dd049a8..0000000 --- a/backend/app/routers/test.py +++ /dev/null @@ -1,12 +0,0 @@ -from fastapi import APIRouter - -router = APIRouter() - -@router.get("/test") -async def test_endpoint(): - return { - "meeting-description": "dummy", - "chat": ["message1", "message2"] - } - -# ... existing code (if any) ...