Add support for app defined services

This commit is contained in:
garrettmills
2020-08-01 14:26:51 -05:00
parent 3991c9b4bb
commit 3e4f8f00f2
5 changed files with 28 additions and 2 deletions

View File

@@ -7,3 +7,4 @@ export { default as HttpKernelUnit } from '../../lib/src/unit/HttpKernel.ts'
export { default as ModelsUnit } from '../../orm/src/ModelsUnit.ts'
export { default as HttpServerUnit } from '../../lib/src/unit/HttpServer.ts'
export { default as RoutingUnit } from '../../lib/src/unit/Routing.ts'
export { default as ServicesUnit } from '../../lib/src/unit/Services.ts'

View File

@@ -7,10 +7,12 @@ import {
HttpKernelUnit,
ModelsUnit,
HttpServerUnit,
RoutingUnit
RoutingUnit,
ServicesUnit,
} from './bundle/daton_units.ts'
export default [
ServicesUnit,
ConfigUnit,
DatabaseUnit,
ModelsUnit,