mirror of
https://github.com/strapi/strapi.git
synced 2025-07-03 23:20:24 +00:00
11 lines
175 B
JavaScript
11 lines
175 B
JavaScript
![]() |
'use strict';
|
||
|
|
||
|
const config = require('./server/config');
|
||
|
const register = require('./server/register');
|
||
|
module.exports = () => {
|
||
|
return {
|
||
|
register,
|
||
|
config,
|
||
|
};
|
||
|
};
|