9 lines
196 B
JavaScript
9 lines
196 B
JavaScript
|
module.exports = {
|
||
|
page: '/shards/get',
|
||
|
execute: async (req, res, app, config, themeConfig, info, db) => {
|
||
|
let returned = await db.get('stats')
|
||
|
|
||
|
res.json(returned)
|
||
|
}
|
||
|
}
|