diff --git a/servant-client/test/Servant/Client/TestServer/Types.hs b/servant-client/test/Servant/Client/TestServer/Types.hs new file mode 100644 index 00000000..df6c3b78 --- /dev/null +++ b/servant-client/test/Servant/Client/TestServer/Types.hs @@ -0,0 +1,10 @@ + +module Servant.Client.TestServer.Types where + +import Network.Wai + +data TestServer + = TestServer { + testServerName :: String, + testServerApp :: Application + }