Export subHelper directly rather than doing a module export

This commit is contained in:
Andrew Martin 2015-06-07 08:45:38 -04:00
parent b88295cf05
commit edf7ada64c

View File

@ -30,7 +30,7 @@ module Yesod.Core.Dispatch
, defaultMiddlewaresNoLogging , defaultMiddlewaresNoLogging
-- * WAI subsites -- * WAI subsites
, WaiSubsite (..) , WaiSubsite (..)
, module YCCD , subHelper
) where ) where
import Prelude hiding (exp) import Prelude hiding (exp)
@ -70,7 +70,6 @@ import Control.Monad (when)
import qualified Paths_yesod_core import qualified Paths_yesod_core
import Data.Version (showVersion) import Data.Version (showVersion)
import qualified System.Random.MWC as MWC import qualified System.Random.MWC as MWC
import Yesod.Core.Class.Dispatch as YCCD (subHelper)
-- | Convert the given argument into a WAI application, executable with any WAI -- | Convert the given argument into a WAI application, executable with any WAI
-- handler. This function will provide no middlewares; if you want commonly -- handler. This function will provide no middlewares; if you want commonly