import { Router } from "express"; import { crawlHandler } from "../controllers/crawl.controller.js"; const router = Router(); router.get("/", crawlHandler); export default router;