renamed modules
This commit is contained in:
parent
698ca2b430
commit
e5f46e8ba0
3 changed files with 5 additions and 5 deletions
|
@ -45,7 +45,7 @@ library
|
|||
exposed-modules:
|
||||
Servant
|
||||
Servant.Server
|
||||
Servant.Server.CombinatorUtils
|
||||
Servant.Server.Utils.CustomCombinators
|
||||
Servant.Server.Experimental.Auth
|
||||
Servant.Server.Internal
|
||||
Servant.Server.Internal.BasicAuth
|
||||
|
@ -133,7 +133,7 @@ test-suite spec
|
|||
main-is: Spec.hs
|
||||
other-modules:
|
||||
Servant.ArbitraryMonadServerSpec
|
||||
Servant.Server.CombinatorUtilsSpec
|
||||
Servant.Server.Utils.CustomCombinatorsSpec
|
||||
Servant.Server.ErrorSpec
|
||||
Servant.Server.Internal.ContextSpec
|
||||
Servant.Server.Internal.RoutingApplicationSpec
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
{-# LANGUAGE TypeFamilies #-}
|
||||
{-# LANGUAGE TypeOperators #-}
|
||||
|
||||
module Servant.Server.CombinatorUtils (
|
||||
module Servant.Server.Utils.CustomCombinators (
|
||||
CombinatorImplementation,
|
||||
runCI,
|
||||
makeCaptureCombinator,
|
|
@ -8,7 +8,7 @@
|
|||
{-# LANGUAGE TypeOperators #-}
|
||||
{-# LANGUAGE UndecidableInstances #-}
|
||||
|
||||
module Servant.Server.CombinatorUtilsSpec where
|
||||
module Servant.Server.Utils.CustomCombinatorsSpec where
|
||||
|
||||
import Control.Concurrent
|
||||
import Data.ByteString.Builder
|
||||
|
@ -27,7 +27,7 @@ import Test.Hspec
|
|||
|
||||
import Servant.API
|
||||
import Servant.Server
|
||||
import Servant.Server.CombinatorUtils
|
||||
import Servant.Server.Utils.CustomCombinators
|
||||
|
||||
runApp :: Application -> Request -> IO Response
|
||||
runApp app req = do
|
Loading…
Reference in a new issue