dashboard-core/theme/dbd-soft-ui/pages/get/shards.js

12 lines
235 B
JavaScript
Raw Normal View History

2023-06-19 14:21:58 +05:00
module.exports = {
2023-06-22 19:36:52 +05:00
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,
});
},
};