this.inputStream = inputStream;
this.outputStream = outputStream;
this.errorStream = errorStream;
this.in = new InputStreamReader(inputStream);
this.out = new AnsiRenderWriter(outputStream, true);
this.err = new AnsiRenderWriter(errorStream, true);
}