2015-04-08 04:35:41 +03:00
|
|
|
{-# LANGUAGE CPP #-}
|
2012-11-15 21:48:48 +04:00
|
|
|
module Import
|
|
|
|
( module Import
|
|
|
|
) where
|
|
|
|
|
|
|
|
import Prelude as Import hiding (head, init, last,
|
|
|
|
readFile, tail, writeFile)
|
|
|
|
import Yesod as Import hiding (Route (..))
|
|
|
|
|
2015-04-08 04:49:33 +03:00
|
|
|
#if !MIN_VERSION_base(4,8,0)
|
2012-11-15 21:48:48 +04:00
|
|
|
import Control.Applicative as Import (pure, (<$>), (<*>))
|
2015-04-08 04:49:33 +03:00
|
|
|
#endif
|
2012-11-15 21:48:48 +04:00
|
|
|
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
|
2015-04-08 04:49:33 +03:00
|
|
|
import Data.Monoid as Import (
|
|
|
|
#if !MIN_VERSION_base(4,8,0)
|
|
|
|
Monoid (mappend, mempty, mconcat),
|
|
|
|
#endif
|
2012-11-15 21:48:48 +04:00
|
|
|
(<>))
|
|
|
|
#else
|
|
|
|
import Data.Monoid as Import
|
|
|
|
(Monoid (mappend, mempty, mconcat))
|
|
|
|
|
|
|
|
infixr 5 <>
|
|
|
|
(<>) :: Monoid m => m -> m -> m
|
|
|
|
(<>) = mappend
|
|
|
|
#endif
|