18 lines
318 B
JavaScript
18 lines
318 B
JavaScript
![]() |
'use strict';
|
||
|
|
||
|
import register from './register';
|
||
|
import bootstrap from './bootstrap';
|
||
|
import services from './services';
|
||
|
import routes from './routes';
|
||
|
import config from './config';
|
||
|
import controllers from './controllers';
|
||
|
|
||
|
export default {
|
||
|
register,
|
||
|
bootstrap,
|
||
|
routes,
|
||
|
config,
|
||
|
controllers,
|
||
|
services,
|
||
|
};
|