package resto

  1. Overview
  2. Docs
type meth = [
  1. | `GET
  2. | `POST
  3. | `DELETE
  4. | `PUT
  5. | `PATCH
]
val string_of_meth : [< meth ] -> string
val meth_of_string : string -> [> meth ] option
module MethMap : Stdlib.Map.S with type key = meth
module StringMap : Stdlib.Map.S with type 'a t = 'a Stdlib.Map.Make(Stdlib.String).t and type key = string
type (_, _) eq =
  1. | Eq : ('a, 'a) eq
module Arg : sig ... end

Typed path argument.

module Path : sig ... end

Parametrized path to services.

module Description : sig ... end

Service directory description

module Query : sig ... end
module type ENCODING = sig ... end
module MakeService (Encoding : ENCODING) : sig ... end