aboutsummaryrefslogtreecommitdiff
path: root/src/std/http.gleam
blob: d9942a878f7e180110b37b219c65d71bf188081d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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