diff options
author | Clint Adams <clint@softwarefreedom.org> | 2015-04-24 12:53:02 -0400 |
---|---|---|
committer | Clint Adams <clint@softwarefreedom.org> | 2015-04-24 12:53:02 -0400 |
commit | 62597317839c7945bfbc4b7a00f55d2db6459ab6 (patch) | |
tree | 6ad8c079d5eea66b05326d435e30cc2b1de43266 /Import.hs |
Diffstat (limited to 'Import.hs')
-rw-r--r-- | Import.hs | 28 |
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 |