11 lines
No EOL
252 B
JavaScript
11 lines
No EOL
252 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('guidelines', {
|
|
username
|
|
});
|
|
});
|
|
|
|
export default main; |