-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathImport.hs
More file actions
39 lines (30 loc) · 1.4 KB
/
Import.hs
File metadata and controls
39 lines (30 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
module Import
( module Import
) where
import Data.Maybe as Import (fromMaybe)
import Prelude as Import hiding (head, init, last,
readFile, tail, writeFile)
import Yesod as Import hiding (Route (..))
import Control.Applicative as Import (pure, (<$>), (<*>))
import Data.Text as Import (Text, pack, unpack)
import Control.Monad as Import (mzero, when)
import Foundation as Import
import Model as Import
import Settings as Import
import Settings.Development as Import
import Settings.StaticFiles as Import
import System.Process as Import (readProcess)
import System.IO as Import (readFile)
import Data.Aeson as Import (eitherDecode, (.:?))
import Control.Concurrent.MVar as Import
#if __GLASGOW_HASKELL__ >= 704
import Data.Monoid as Import
(Monoid (mappend, mempty, mconcat),
(<>))
#else
import Data.Monoid as Import
(Monoid (mappend, mempty, mconcat))
infixr 5 <>
(<>) :: Monoid m => m -> m -> m
(<>) = mappend
#endif