21 lines
		
	
	
		
			696 B
		
	
	
	
		
			Haskell
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			696 B
		
	
	
	
		
			Haskell
		
	
	
	
	
	
{-# LANGUAGE CPP #-}
 | 
						|
module Import
 | 
						|
    ( module Import
 | 
						|
    ) where
 | 
						|
 | 
						|
import           Prelude              as Import hiding (head, init, last,
 | 
						|
                                                 readFile, tail, writeFile)
 | 
						|
import           Yesod                as Import hiding (Route (..))
 | 
						|
 | 
						|
#if !MIN_VERSION_base(4,8,0)
 | 
						|
import           Control.Applicative  as Import (pure, (<$>), (<*>))
 | 
						|
#endif
 | 
						|
import           Data.Text            as Import (Text)
 | 
						|
 | 
						|
import           Foundation           as Import
 | 
						|
import           Settings             as Import
 | 
						|
import           Settings.Development as Import
 | 
						|
import           Settings.StaticFiles as Import
 | 
						|
 | 
						|
import           Data.Monoid          as Import ((<>))
 |