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