Files
Home_assistant/backend/app/api/routes/__init__.py
T
2026-06-10 08:23:45 +03:00

13 lines
618 B
Python

from fastapi import APIRouter
from app.api.routes import character, chat, health, memory, pomodoro, projects, webhooks
api_router = APIRouter(prefix="/api/v1")
api_router.include_router(health.router, tags=["health"])
api_router.include_router(chat.router, prefix="/chat", tags=["chat"])
api_router.include_router(pomodoro.router, prefix="/pomodoro", tags=["pomodoro"])
api_router.include_router(character.router, tags=["character"])
api_router.include_router(projects.router, tags=["projects"])
api_router.include_router(memory.router, tags=["memory"])
api_router.include_router(webhooks.router, tags=["webhooks"])