UNPKG

@dooboostore/simple-boot-http-server

Version:
18 lines (17 loc) 322 B
// src/endpoints/HeaderEndPoint.ts var HeaderEndPoint = class { constructor(headers) { this.headers = headers; } async endPoint(rr, app) { if (this.headers) { rr.resSetHeaders(this.headers); } } async onInit(app) { } }; export { HeaderEndPoint }; //# sourceMappingURL=HeaderEndPoint.js.map