Spaces:
Sleeping
Sleeping
| """ | |
| Chat module initialization. | |
| This module defines the FastAPI router for chat API endpoints and imports related views. | |
| """ | |
| from fastapi.routing import APIRouter | |
| scraper_router = APIRouter(prefix="/api/job", tags=["scraper"]) | |
| from . import views # noqa # pylint: disable=C0413 | |