bigly-chat/client/e404.js

11 lines
245 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) {
let { username } = input;
return res.render('404', {
username
});
});
export default main;