bigly-chat/client/main.js

11 lines
246 B
JavaScript
Raw Normal View History

2024-09-07 18:12:58 -04:00
import Route from "../route.js";
2024-09-08 05:04:57 -04:00
import auth from "../form/auth.js";
2024-09-07 18:12:58 -04:00
2024-09-08 05:04:57 -04:00
let main = new Route([auth], async function (req, res, input) {
let { username } = input;
2024-09-18 18:47:09 -04:00
return res.render('main', {
username
});
2024-09-07 18:12:58 -04:00
});
export default main;