export interface InputOutput {
    read(): Promise<any>;
    write(data: any): Promise<void>;
}
