10 lines
No EOL
215 B
JavaScript
10 lines
No EOL
215 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('404', {
|
|
...input
|
|
});
|
|
});
|
|
|
|
export default main; |