feat: production updates

This commit is contained in:
Wyatt Johnson
2018-07-16 13:26:41 -06:00
parent 34f42c2991
commit 6f6bedb07a
8 changed files with 33 additions and 20 deletions
@@ -0,0 +1,5 @@
import { RequestHandler } from "express";
export const notFoundMiddleware: RequestHandler = (req, res, next) => {
next(new Error("not found"));
};