export interface IExecOutput {
    code: number;
    stdout: string;
    stderr: string;
}
