diff options
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 |