import { Request, Response } from "express";
import { sendError } from "../utils/api-response";

export function notFoundMiddleware(req: Request, res: Response) {
  sendError(
    res,
    `Route not found: ${req.method} ${req.path}`,
    404,
    "NOT_FOUND",
  );
}
