agentcrumbs
Version:
Debug mode for any agent.
15 lines • 375 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.HttpSink = void 0;
const http_js_1 = require("../transport/http.js");
class HttpSink {
url;
constructor(url) {
this.url = url;
}
write(crumb) {
(0, http_js_1.sendCrumb)(crumb, this.url);
}
}
exports.HttpSink = HttpSink;
//# sourceMappingURL=socket.js.map