remove unused files

This commit is contained in:
b1ek 2023-02-19 17:07:13 +10:00
parent 4ae9fa9ead
commit 1a3ba36e04
Signed by: blek
GPG Key ID: 14546221E3595D0C
1 changed files with 0 additions and 15 deletions

View File

@ -1,15 +0,0 @@
const Helpers = require('../helpers');
async function handler(err, req, res, next) {
if (res.headersSent) {
return next(err)
}
res.status(500).send(Helpers.ViewLoader.load('error.pug', {
error: '500 Internal Server Error',
message: 'An unexpected error happened in the server'
}));
}
module.exports = (router) => {
// router.use(handler);
}