bigly-chat/client/main.js
2024-11-25 14:12:43 -05:00

11 lines
No EOL
246 B
JavaScript

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('main', {
username
});
});
export default main;