@topgroup/diginext
Version:
A BUILD SERVER & CLI to deploy apps to any Kubernetes clusters.
12 lines (11 loc) • 325 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LogStream = void 0;
const stream_1 = require("stream");
class LogStream extends stream_1.Writable {
write(chunk, encoding, callback) {
console.log("line :>> ", chunk);
return true;
}
}
exports.LogStream = LogStream;