summaryrefslogtreecommitdiff
path: root/Import.hs
diff options
context:
space:
mode:
authorDaniel Gnoutcheff <gnoutchd@softwarefreedom.org>2016-05-27 16:00:00 -0400
committerDaniel Gnoutcheff <gnoutchd@softwarefreedom.org>2018-09-26 18:11:11 -0400
commita1a17acb326020f1b57f587230cb439e901784df (patch)
tree358a1ea916a242609a981ff46e2a6814a2208cec /Import.hs
parentf1a294e5ddb8ae0ccdcef1a12561e603ff996cfe (diff)
Ported to Debian jessie
Most of the churn here comes from rebasing the Yesod boilerplate.
Diffstat (limited to 'Import.hs')
-rw-r--r--Import.hs40
1 files changed, 20 insertions, 20 deletions
diff --git a/Import.hs b/Import.hs
index 641de38..82bbd36 100644
--- a/Import.hs
+++ b/Import.hs
@@ -1,27 +1,27 @@
module Import
- ( module Prelude
- , module Yesod
- , module Foundation
- , module Settings.StaticFiles
- , module Settings.Development
- , module Data.Monoid
- , module Control.Applicative
- , Text
-#if __GLASGOW_HASKELL__ < 704
- , (<>)
-#endif
+ ( module Import
) where
-import Prelude hiding (writeFile, readFile, head, tail, init, last)
-import Yesod hiding (Route(..))
-import Foundation
-import Data.Monoid (Monoid (mappend, mempty, mconcat))
-import Control.Applicative ((<$>), (<*>), pure)
-import Data.Text (Text)
-import Settings.StaticFiles
-import Settings.Development
+import Prelude as Import hiding (head, init, last,
+ readFile, tail, writeFile)
+import Yesod as Import hiding (Route (..))
+
+import Control.Applicative as Import (pure, (<$>), (<*>))
+import Data.Text as Import (Text)
+
+import Foundation as Import
+import Settings as Import
+import Settings.Development as Import
+import Settings.StaticFiles as Import
+
+#if __GLASGOW_HASKELL__ >= 704
+import Data.Monoid as Import
+ (Monoid (mappend, mempty, mconcat),
+ (<>))
+#else
+import Data.Monoid as Import
+ (Monoid (mappend, mempty, mconcat))
-#if __GLASGOW_HASKELL__ < 704
infixr 5 <>
(<>) :: Monoid m => m -> m -> m
(<>) = mappend