aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLouis Pilfold <louis@lpil.uk>2019-06-29 19:26:26 +0100
committerLouis Pilfold <louis@lpil.uk>2019-06-29 19:26:38 +0100
commit2609fc35b3f9cb34789f92dbdd33c1ca706cc687 (patch)
treeae60e6e28cec5dbd5c6923bacf4dcfb7bf5a83e1 /src
parentc1465809b7be17228e35bfd66260c05d1381db7d (diff)
downloadgleam_stdlib-2609fc35b3f9cb34789f92dbdd33c1ca706cc687.tar.gz
gleam_stdlib-2609fc35b3f9cb34789f92dbdd33c1ca706cc687.zip
Split out Gleam HTTP
Now found at https://github.com/gleam-lang/gleam_http
Diffstat (limited to 'src')
-rw-r--r--src/gleam/http.gleam13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/gleam/http.gleam b/src/gleam/http.gleam
deleted file mode 100644
index d9942a8..0000000
--- a/src/gleam/http.gleam
+++ /dev/null
@@ -1,13 +0,0 @@
-// 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