UNPKG

@glandjs/express

Version:

An Express adapter for Gland HTTP protocol layer, enabling classic middleware-based routing within the Gland architecture solution.

12 lines (11 loc) 358 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ExpressCore = void 0; const http_1 = require("@glandjs/http"); const adapter_1 = require("./adapter"); class ExpressCore extends http_1.HttpCore { constructor(options) { super(new adapter_1.ExpressAdapter(), options); } } exports.ExpressCore = ExpressCore;