summaryrefslogtreecommitdiff
path: root/Biz/Que/Site.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Biz/Que/Site.hs')
-rw-r--r--Biz/Que/Site.hs16
1 files changed, 8 insertions, 8 deletions
diff --git a/Biz/Que/Site.hs b/Biz/Que/Site.hs
index 3e456da..0d89400 100644
--- a/Biz/Que/Site.hs
+++ b/Biz/Que/Site.hs
@@ -83,7 +83,7 @@ getKey ns = do
auth ns
|> Config.parseIniFile conf
|> either errorParsingConf identity
- |> return
+ |> pure
errorParsingConf :: error
errorParsingConf = panic "could not parse ~/.config/que.conf"
@@ -111,11 +111,11 @@ run key ns Sources {..} = Async.runConcurrently actions |> void
actions =
traverse
Async.Concurrently
- [ toHtml index >>= serve key ns "index" |> forever,
- toHtml quescripts >>= serve key ns "quescripts" |> forever,
- BS.readFile client >>= serve key ns "client" |> forever,
- toHtml tutorial >>= serve key ns "tutorial" |> forever,
- toHtml apidocs >>= serve key ns "apidocs" |> forever
+ [ toHtml index +> serve key ns "index" |> forever,
+ toHtml quescripts +> serve key ns "quescripts" |> forever,
+ BS.readFile client +> serve key ns "client" |> forever,
+ toHtml tutorial +> serve key ns "tutorial" |> forever,
+ toHtml apidocs +> serve key ns "apidocs" |> forever
]
toHtml :: FilePath -> IO ByteString
toHtml md =
@@ -143,7 +143,7 @@ serve Nothing "pub" path content =
(ReqBodyBs content)
ignoreResponse
mempty
- liftIO <| return ()
+ liftIO <| pure ()
serve Nothing p _ _ = panic <| "no auth key provided for ns: " <> p
serve (Just key) ns path content =
runReq defaultHttpConfig <| do
@@ -156,4 +156,4 @@ serve (Just key) ns path content =
(ReqBodyBs content)
ignoreResponse
options
- liftIO <| return ()
+ liftIO <| pure ()