@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) • 363 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ExpressBroker = void 0;
const http_1 = require("@glandjs/http");
const core_1 = require("./core");
class ExpressBroker extends http_1.HttpBroker {
constructor(options) {
super(new core_1.ExpressCore(options), options);
}
}
exports.ExpressBroker = ExpressBroker;