diff options
Diffstat (limited to 'ibb')
-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 |