diff options
author | Ben Sima <ben@bsima.me> | 2019-02-04 11:41:33 -0800 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2019-02-04 11:41:33 -0800 |
commit | 17efc29532c49a94c7e2fb140c32d6bcbeb485b2 (patch) | |
tree | ad093794725ea3f57394beb7f692ed12fe48d44b /ibb/Main.hs | |
parent | 441a28d8ec9e0eb2cea5f6d8718608bee91d1781 (diff) |
Sort imports
Diffstat (limited to 'ibb/Main.hs')
-rw-r--r-- | ibb/Main.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ibb/Main.hs b/ibb/Main.hs index 0ed8bdf..77a7d0b 100644 --- a/ibb/Main.hs +++ b/ibb/Main.hs @@ -4,11 +4,11 @@ module Main where import Data.Text (Text) -import Web.Scotty (ActionM, scotty, get, html) -import Text.Blaze.Html.Renderer.Text (renderHtml) import Text.Blaze (Markup) -import Text.Hamlet (shamlet) import Text.Blaze.Html (Html) +import Text.Blaze.Html.Renderer.Text (renderHtml) +import Text.Hamlet (shamlet) +import Web.Scotty (ActionM, scotty, get, html) render :: Html -> ActionM () render = html . renderHtml |