bigly-chat/client/tou.js
2024-10-30 20:37:20 -04:00

10 lines
No EOL
222 B
JavaScript

import Route from "../route.js";
import auth from "../form/auth.js";
let main = new Route([auth], async function (req, res, input) {
return res.render('guidelines', {
...input
});
});
export default main;