Add HTTP server service to default units

This commit is contained in:
Garrett Mills 2021-03-06 20:59:19 -06:00
parent 939537eafe
commit c75f62320a
Signed by: garrettmills
GPG Key ID: D2BF5FBA8298F246

View File

@ -1,4 +1,4 @@
import {Config, Controllers} from '@extollo/lib'
import {Config, Controllers, HTTPServer} from '@extollo/lib'
import {Database, Models} from "@extollo/orm";
export const Units = [
@ -6,4 +6,6 @@ export const Units = [
Controllers,
Database,
Models,
HTTPServer,
]