From 62597317839c7945bfbc4b7a00f55d2db6459ab6 Mon Sep 17 00:00:00 2001 From: Clint Adams Date: Fri, 24 Apr 2015 12:53:02 -0400 Subject: Finally put pfifcontractors into git --- Import.hs | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 Import.hs (limited to 'Import.hs') 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 -- cgit v1.2.3