Module Morph__.Request
type t
=
{
target: string,
meth: Morph.Method.t,
headers: list((string, string)),
read_body: unit => Lwt.t(string),
context: Hmap.t,
}
;
let make: ?meth:Morph.Method.t => ?headers:list((string, string)) => ?read_body:(unit => Lwt.t(string)) => ?context:Hmap.t => string => t;