strapi-plugin-config-sync/server/services/index.js

10 lines
118 B
JavaScript
Raw Normal View History

2021-10-14 14:37:00 +02:00
'use strict';
const main = require('./main');
2021-10-14 16:37:32 +02:00
const type = require('./type');
2021-10-14 14:37:00 +02:00
module.exports = {
2021-10-14 16:37:32 +02:00
type,
2021-10-14 14:37:00 +02:00
main,
};