bigly-chat/client/main.js

9 lines
274 B
JavaScript
Raw Normal View History

2024-11-25 14:12:43 -05:00
import Route from "../route.js";
import Auth from "../form/auth.js";
import Format from "../common/format.js";
let main = new Route([Auth], async function (req, res, input) {
return `Hello world! Your name is: ${Format.escape(input.username)}`
});
export default main;