mirror of
https://github.com/PretendoNetwork/website.git
synced 2026-06-14 12:50:51 -05:00
15 lines
189 B
JavaScript
15 lines
189 B
JavaScript
/*
|
|
|
|
util.js -
|
|
small commonly used utilities
|
|
|
|
*/
|
|
|
|
// shows 404 template. takes express response object
|
|
function send404(res) {
|
|
res.status(404).send('404');
|
|
}
|
|
|
|
module.exports = {
|
|
send404
|
|
}; |