Current section

Files

Jump to
gossamer src gossamer http_method.gleam
Raw

src/gossamer/http_method.gleam

/// An HTTP method.
///
/// Unrecognized methods use `Other(String)`.
///
pub type HttpMethod {
Connect
Delete
Get
Head
Options
Patch
Post
Put
Trace
Other(String)
}