12 lines
No EOL
235 B
JavaScript
12 lines
No EOL
235 B
JavaScript
module.exports = {
|
|
page: "/shards",
|
|
// eslint-disable-next-line no-unused-vars
|
|
execute: async (req, res, app, config, themeConfig, info, db) => {
|
|
res.render("shards", {
|
|
req: req,
|
|
config,
|
|
themeConfig,
|
|
info,
|
|
});
|
|
},
|
|
}; |