forked from jwaldmann/star-exec-presenter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Import.hs
31 lines (25 loc) · 1.02 KB
/
Import.hs
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
module Import
( module Import
) where
import Prelude as Import hiding (head, init, last,
readFile, tail, writeFile)
import Yesod as Import hiding (Route (..))
import Data.Text as Import (Text)
import Foundation as Import
import Presenter.Model as Import
import Settings as Import
import Settings.Development as Import
import Settings.StaticFiles 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
for :: Functor f => f a -> (a -> b) -> f b
for = flip fmap