-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMain.hs
41 lines (32 loc) · 832 Bytes
/
Main.hs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{-|
GoCacheHaskell Example
Created by Amir Razmjou on 8/13/20.
Copyright © 2020 Amir Razmjou. All rights reserved.
-}
{-# LANGUAGE OverloadedStrings #-}
module Main where
import qualified Data.ByteString.Char8 as BC
import Network.HTTP.Client.Types
import Network.HTTP.Simple
host :: BC.ByteString
host = "localhost"
port :: Int
port = 8080
path :: BC.ByteString
path = "/cache/Hello"
value = "World"
request :: BC.ByteString -> Request
request method =
setRequestMethod method $
setRequestHost host $
setRequestPath path $
setRequestBody value $
setRequestPort port $
defaultRequest
main :: IO ()
main = do
httpNoBody $ request "PUT"
response <- httpBS $ request "GET"
let status = getResponseStatusCode response
let value = getResponseBody response
print $ "Hello = " <> value