bigly-chat/client/main.js

11 lines
246 B
JavaScript
Raw Normal View History

2024-11-25 14:12:43 -05:00
import Route from "../route.js";
2024-11-25 14:12:43 -05:00
import auth from "../form/auth.js";
2024-11-25 14:12:43 -05:00
2024-11-25 14:12:43 -05:00
let main = new Route([auth], async function (req, res, input) {
let { username } = input;
2024-11-25 14:12:43 -05:00
return res.render('main', {
username
});
2024-11-25 14:12:43 -05:00
});
export default main;