From c75f62320adcbd07298d5dcae4deaf05035e92ba Mon Sep 17 00:00:00 2001 From: garrettmills Date: Sat, 6 Mar 2021 20:59:19 -0600 Subject: [PATCH] Add HTTP server service to default units --- src/Units.extollo.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Units.extollo.ts b/src/Units.extollo.ts index cc4e3f0..dd0618e 100644 --- a/src/Units.extollo.ts +++ b/src/Units.extollo.ts @@ -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, ]