package curly

  1. Overview
  2. Docs
type t = [
  1. | `GET
  2. | `POST
  3. | `HEAD
  4. | `PUT
  5. | `DELETE
  6. | `OPTIONS
  7. | `TRACE
  8. | `CONNECT
  9. | `PATCH
  10. | `Other of string
]
val pp : Format.formatter -> t -> unit