Ghost/core/server/services/stats/service.js
Fabien 'egg' O'Carroll 19a08cd11d
Replaced stats service with @tryghost/stats-service (#14527)
- Pulls logic out of Ghost core and into the Analytics repository.
- Test coverage has increased for the stats service
- Interface simplified
2022-04-21 14:57:07 +01:00

5 lines
150 B
JavaScript

const StatsService = require('@tryghost/stats-service');
const db = require('../../data/db');
module.exports = StatsService.create({knex: db.knex});