From 44eb770a5f878f62955242dd4eb55afcb35e6df9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Hahn?= Date: Mon, 4 Jan 2016 22:28:46 +0100 Subject: [PATCH] added missing file --- servant-client/test/Servant/Client/TestServer/Types.hs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 servant-client/test/Servant/Client/TestServer/Types.hs 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 + }