8 lines
181 B
JavaScript
8 lines
181 B
JavaScript
module.exports = {
|
|
page: "/shards/get",
|
|
execute: async (req, res, app, config, themeConfig, info, db) => {
|
|
const returned = await db.get("stats");
|
|
|
|
res.json(returned);
|
|
},
|
|
};
|