blob: 8fb11d63dc89a12be1679a1e97d83f6293ad5560 (
plain)
1
2
3
4
5
6
7
8
|
import { RequestHandler } from "express";
import createHttpError from "http-errors";
const notFoundHandler: RequestHandler = (req, res, next) => {
return next(createHttpError.NotFound());
};
export default notFoundHandler;
|