You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
loc-chain-backend/src/Units.extollo.ts

16 lines
360 B

import {Config, Controllers, HTTPServer, Files, Middlewares, Routing, Unit} from '@extollo/lib'
import {CommandLine} from "@extollo/cli";
import {FirebaseUnit} from "./app/units/FirebaseUnit";
export const Units = [
Config,
FirebaseUnit,
Files,
CommandLine,
Controllers,
Middlewares,
Routing,
HTTPServer,
] as (typeof Unit)[]