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