mirror of
https://github.com/c-cube/tiny_httpd.git
synced 2026-03-10 07:35:49 -04:00
10 lines
298 B
OCaml
10 lines
298 B
OCaml
(** HTTP Methods *)
|
|
|
|
type t = [ `GET | `PUT | `POST | `HEAD | `DELETE | `OPTIONS ]
|
|
(** 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
|
|
val of_string : string -> t
|