blob: 74ab6ba9454dddbc461c35c51b7b6dd45a579862 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import Meta from '../../../models/meta';
/**
* Get the misskey's statistics
*/
module.exports = () => new Promise(async (res, rej) => {
const meta = await Meta.findOne();
res(meta.stats);
});
|