Current section

Files

Jump to
gleam_stdlib src gleam http.gleam
Raw

src/gleam/http.gleam

// HTTP standard method as defined by RFC 2616, and PATCH which is defined by
// RFC 5789.
//
pub enum Method =
| Get
| Post
| Head
| Put
| Delete
| Trace
| Connect
| Options
| Patch