@halsp/http
Version:
支持 Halsp HTTP 请求
11 lines • 369 B
JavaScript
import { Middleware } from "@halsp/core";
import { initHeaderHandler, initResultHandler, } from "./context/index.mjs";
initResultHandler(Middleware.prototype, function () {
return this.res;
});
initHeaderHandler(Middleware.prototype, function () {
return this.req.headers;
}, function () {
return this.res.headers;
});
//# sourceMappingURL=middleware.js.map