aboutsummaryrefslogtreecommitdiff
path: root/src/config/notFoundHandler.ts
blob: a372e8e34a0d36f9e75133367c6cf9731f9af490 (plain)
1
2
3
4
5
6
7
8
import type { RequestHandler } from "express";
import createHttpError from "http-errors";

const notFoundHandler: RequestHandler = (req, res, next) => {
  return next(createHttpError.NotFound());
};

export default notFoundHandler;