UNPKG

alepha

Version:

Easy-to-use modern TypeScript framework for building many kind of applications.

15 lines (10 loc) 481 B
import { $module } from "alepha"; import { HttpClient } from "./services/HttpClient.ts"; // --------------------------------------------------------------------------------------------------------------------- export * from "./index.shared.ts"; // --------------------------------------------------------------------------------------------------------------------- export const AlephaServer = $module({ name: "alepha.server", primitives: [], services: [HttpClient], });