package tiny_httpd

  1. Overview
  2. Docs
type t = [
  1. | `GET
  2. | `PUT
  3. | `POST
  4. | `HEAD
  5. | `DELETE
]

A HTTP method. For now we only handle a subset of these.

See https://tools.ietf.org/html/rfc7231#section-4

val pp : Format.formatter -> t -> unit
val to_string : t -> string