package yurt

  1. Overview
  2. Docs
An HTTP framework for OCaml

Install

dune-project
 Dependency

Authors

Maintainers

Sources

yurt-0.6.tbz
sha256=35b5c3e2e89d2a786d117109fc93e2fa501ed87e925d846d45573e95ab266815
md5=881c8406d690a5ebb896a57ae93d04ec

doc/yurt/Yurt_client/index.html

Module Yurt_clientSource

Sourceval get : ?ctx:??? -> ?headers:??? -> string -> (Cohttp.Response.t * string) Lwt.t
Sourceval post : ?ctx:??? -> ?headers:??? -> ?body:??? -> string -> (Cohttp.Response.t * string) Lwt.t
Sourceval post_form : ?ctx:??? -> ?headers:??? -> params:(string * string list) list -> string -> (Cohttp.Response.t * string) Lwt.t
Sourceval request : ?ctx:??? -> ?headers:??? -> ?body:??? -> Cohttp.Code.meth -> string -> (Cohttp.Response.t * string) Lwt.t
Sourceval get_json : ?ctx:??? -> ?headers:??? -> string -> (Cohttp.Response.t * [> Ezjsonm.t ]) Lwt.t
Sourceval post_json : ?ctx:??? -> ?headers:??? -> ?body:??? -> string -> (Cohttp.Response.t * [> Ezjsonm.t ]) Lwt.t
Sourceval post_form_json : ?ctx:??? -> ?headers:??? -> ?params:??? -> string -> (Cohttp.Response.t * [> Ezjsonm.t ]) Lwt.t