'use strict';
import config from './server/src/config';
import controllers from './server/src/controllers';
import register from './server/src/register';
import routes from './server/src/routes';
module.exports = () => {
return {
register,
config,
controllers,
routes,
};
};