| 20 | message: str |
| 21 | |
| 22 | class ScrapingResult(BaseModel): |
| 23 | url: str |
| 24 | success: bool |
| 25 | data: Optional[Dict] |
| 26 | error: Optional[str] |
| 27 | |
| 28 | # In-memory task storage (should be replaced with Redis) |
| 29 | scraping_tasks = {} |
nothing calls this directly
no outgoing calls
no test coverage detected