summaryrefslogtreecommitdiff
path: root/Import.hs
diff options
context:
space:
mode:
authorClint Adams <clint@softwarefreedom.org>2013-04-19 17:57:46 -0400
committerClint Adams <clint@softwarefreedom.org>2013-04-19 17:57:46 -0400
commit514ff2acff2ba9ad9f809e22fc8ed5a986410e5d (patch)
treebe57afe59d966d65910b4f9336a0370f9ca18b26 /Import.hs
Initial stab.
Diffstat (limited to 'Import.hs')
-rw-r--r--Import.hs28
1 files changed, 28 insertions, 0 deletions
diff --git a/Import.hs b/Import.hs
new file mode 100644
index 0000000..641de38
--- /dev/null
+++ b/Import.hs
@@ -0,0 +1,28 @@
+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
+ ) 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
+
+#if __GLASGOW_HASKELL__ < 704
+infixr 5 <>
+(<>) :: Monoid m => m -> m -> m
+(<>) = mappend
+#endif