11 lines
No EOL
232 B
JavaScript
11 lines
No EOL
232 B
JavaScript
import Route from "../route.js";
|
|
import auth from "../form/auth.js";
|
|
|
|
let main = new Route([auth], async function (req, res, input) {
|
|
res.render('guidelines', {
|
|
...input
|
|
});
|
|
return true;
|
|
});
|
|
|
|
export default main; |