From f941dad48d2e52ae67b56b07e1603d93864afa71 Mon Sep 17 00:00:00 2001 From: Tom Streller Date: Tue, 28 Feb 2012 20:48:34 +0100 Subject: [PATCH] Added StaticFiles to Import --- yesod/scaffold/Import.hs.cg | 2 ++ 1 file changed, 2 insertions(+) diff --git a/yesod/scaffold/Import.hs.cg b/yesod/scaffold/Import.hs.cg index 5083f615..66d1bcc7 100644 --- a/yesod/scaffold/Import.hs.cg +++ b/yesod/scaffold/Import.hs.cg @@ -6,6 +6,7 @@ module Import , Text , module Data.Monoid , module Control.Applicative + , module Settings.StaticField ) where import Prelude hiding (writeFile, readFile, head, tail, init, last) @@ -14,6 +15,7 @@ import Foundation import Data.Monoid (Monoid (mappend, mempty, mconcat)) import Control.Applicative ((<$>), (<*>), pure) import Data.Text (Text) +import Settings.StaticField infixr 5 <> (<>) :: Monoid m => m -> m -> m