router.post("/validate-url")
| 1 | from fastapi import APIRouter, HTTPException, BackgroundTasks |
| 2 | from pydantic import BaseModel, HttpUrl |
| 3 | from typing import List, Dict, Optional |
| 4 | import asyncio |
nothing calls this directly
no outgoing calls
no test coverage detected