From edf7ada64c1a967f3f0508f1941a542caeaaf265 Mon Sep 17 00:00:00 2001 From: Andrew Martin Date: Sun, 7 Jun 2015 08:45:38 -0400 Subject: [PATCH] Export subHelper directly rather than doing a module export --- yesod-core/Yesod/Core/Dispatch.hs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/yesod-core/Yesod/Core/Dispatch.hs b/yesod-core/Yesod/Core/Dispatch.hs index 072181d3..92fd1224 100644 --- a/yesod-core/Yesod/Core/Dispatch.hs +++ b/yesod-core/Yesod/Core/Dispatch.hs @@ -30,7 +30,7 @@ module Yesod.Core.Dispatch , defaultMiddlewaresNoLogging -- * WAI subsites , WaiSubsite (..) - , module YCCD + , subHelper ) where import Prelude hiding (exp) @@ -70,7 +70,6 @@ import Control.Monad (when) import qualified Paths_yesod_core import Data.Version (showVersion) 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 -- handler. This function will provide no middlewares; if you want commonly