diff options
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | src/gleam/http.gleam | 13 | ||||
-rw-r--r-- | test/gleam/http_test.gleam | 1 |
3 files changed, 1 insertions, 14 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 7fe076f..401e4c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ - The `map_dict` module gains a `fold` function. - All modules moved under the `std` namespace. +- The `http` module has been split out into the `gleam_http` package. ## v0.2.0 - 2019-05-11 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 diff --git a/test/gleam/http_test.gleam b/test/gleam/http_test.gleam deleted file mode 100644 index 9941d56..0000000 --- a/test/gleam/http_test.gleam +++ /dev/null @@ -1 +0,0 @@ -// Nothing here yet... |