6 lines
98 B
JavaScript
Raw Normal View History

2017-06-15 15:35:04 +02:00
'use strict';
module.exports = async ctx => {
2017-07-28 18:56:28 +02:00
return ctx.notFound('My custom message 404');
2017-06-15 15:35:04 +02:00
};