mirror of
https://github.com/actualbudget/actual.git
synced 2026-05-11 01:18:59 -05:00
7 lines
181 B
JavaScript
7 lines
181 B
JavaScript
async function middleware(err, req, res, next) {
|
|
console.log('ERROR', err);
|
|
res.status(500).send({ status: 'error', reason: 'internal-error' });
|
|
}
|
|
|
|
module.exports = middleware;
|