9 lines
216 B
JavaScript
Raw Normal View History

2020-12-14 00:59:12 +01:00
'use strict';
const initSentryMiddleware = require('./middlewares/sentry');
module.exports = async ({ strapi }) => {
2020-12-14 00:59:12 +01:00
// Initialize the Sentry service exposed by this plugin
initSentryMiddleware({ strapi });
2020-12-14 00:59:12 +01:00
};