2020-07-22 14:38:17 +00:00
|
|
|
import {
|
2020-07-28 00:48:44 +00:00
|
|
|
ConfigUnit, DatabaseUnit, ControllerUnit, MiddlewareUnit, RoutesUnit, HttpKernelUnit, ModelsUnit, HttpServerUnit
|
2020-07-22 14:38:17 +00:00
|
|
|
} from './bundle/daton_units.ts'
|
2020-07-21 03:54:25 +00:00
|
|
|
|
|
|
|
export default [
|
|
|
|
ConfigUnit,
|
|
|
|
DatabaseUnit,
|
2020-07-27 14:41:04 +00:00
|
|
|
ModelsUnit,
|
2020-07-22 14:38:17 +00:00
|
|
|
HttpKernelUnit,
|
2020-07-21 03:54:25 +00:00
|
|
|
MiddlewareUnit,
|
|
|
|
ControllerUnit,
|
2020-07-22 14:38:17 +00:00
|
|
|
RoutesUnit,
|
2020-07-28 00:48:44 +00:00
|
|
|
HttpServerUnit,
|
2020-07-21 03:54:25 +00:00
|
|
|
]
|