Module Ezcurl_core
Core signatures and implementation
module Config : sig ... endval make : ?set_opts:(t -> unit) -> unit -> tval delete : t -> unitval with_client : ?set_opts:(t -> unit) -> (t -> 'a) -> 'aMake a temporary client, call the function with it, then cleanup
val pp_response_info : Stdlib.Format.formatter -> response_info -> unitval string_of_response_info : response_info -> string
type response={code : int;headers : (string * string) list;body : string;info : response_info;}
val pp_response : Stdlib.Format.formatter -> response -> unitval string_of_response : response -> string
type meth=|GET|POST of Curl.curlHTTPPost list|PUT|DELETE|HEAD|CONNECT|OPTIONS|TRACE|PATCHThe HTTP method to use
module type IO = sig ... end
module type S = sig ... end