From 5a1f3494eb9517a7b7a332cb74dd10a6a7d32d31 Mon Sep 17 00:00:00 2001 From: Louis Pilfold Date: Wed, 29 May 2019 21:02:55 +0100 Subject: Enable namespaced modules --- src/std/http.gleam | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/std/http.gleam (limited to 'src/std/http.gleam') diff --git a/src/std/http.gleam b/src/std/http.gleam new file mode 100644 index 0000000..d9942a8 --- /dev/null +++ b/src/std/http.gleam @@ -0,0 +1,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 -- cgit v1.2.3