LE.Client
type 'a t = 'a Lwt.t
type ctx = Http_mirage_client.t
type error = Mimic.error
type meth = [
| `HEAD
| `GET
| `POST
]
type response = {
headers : (string * string) list;
status : int;
}
val request : ?ctx:ctx -> ?meth:meth -> ?headers:(string * string) list -> ?body:string -> string -> (response * string, error) Stdlib.result t