Module Ketrew_pure.Protocol.Process_sub_protocol.Ssh_connection

module Ssh_connection: sig .. end

type status = [ `Alive of [ `Askpass_waiting_for_input of (float * string) list | `Idle ]
| `Configured
| `Dead of string
| `Unknown of string ]
type t = {
   id : string;
   name : string;
   uri : string;
   status : status;
}