Module Irmin_client.Client

module type S = sig ... end
type nonrec addr = [
  1. | `TLS of [ `Hostname of string ] * [ `IP of Ipaddr.t ] * [ `Port of int ]
  2. | `TCP of [ `IP of Ipaddr.t ] * [ `Port of int ]
  3. | `Ws of ([ `IP of Ipaddr.t ] * [ `Port of int ]) option * string
  4. | `Unix_domain_socket of [ `File of string ]
]
module type IO = sig ... end
val config : ?tls:bool -> ?hostname:string -> Uri.t -> Irmin.config