From a0e8e5a91d15ed8c79f4a1b5914d3a6242c0cbd3 Mon Sep 17 00:00:00 2001 From: Andrew Guschin Date: Sun, 5 Mar 2023 13:45:37 +0400 Subject: Migrated project to cabal --- app/Web/Http.hs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 app/Web/Http.hs (limited to 'app/Web/Http.hs') diff --git a/app/Web/Http.hs b/app/Web/Http.hs new file mode 100644 index 0000000..92cb043 --- /dev/null +++ b/app/Web/Http.hs @@ -0,0 +1,12 @@ +module Web.Http where + +import Data.Text (Text) + +data Header = Header Text Text + deriving Show + +data Method = GET | PUT | POST + deriving (Show, Eq) + +data QueryPair = QueryPair Text Text + deriving Show -- cgit v1.2.3