Module Curly.Meth

type t = [
| `GET
| `POST
| `HEAD
| `PUT
| `DELETE
| `OPTIONS
| `TRACE
| `CONNECT
| `PATCH
| `Other of string
]
val pp : Format.formatter -> t -> unit