bigly-chat/client/e404.js

10 lines
215 B
JavaScript
Raw Normal View History

2024-10-24 22:41:21 -04:00
import Route from "../route.js";
import auth from "../form/auth.js";
let main = new Route([auth], async function (req, res, input) {
return res.render('404', {
2024-10-30 20:37:20 -04:00
...input
2024-10-24 22:41:21 -04:00
});
});
export default main;