Spaces:
Sleeping
Sleeping
File size: 283 Bytes
b60402f |
1 2 3 4 5 6 7 8 9 10 11 12 |
"""
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
|