8 lines
196 B
JavaScript
8 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)
|
|
}
|
|
}
|