From 656f80acad9fb0c7bff076782b4011e4f9af04ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Hahn?= Date: Wed, 12 Nov 2014 12:55:23 +0800 Subject: [PATCH] Servant re-exports Servant.API.Raw --- src/Servant/API.hs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Servant/API.hs b/src/Servant/API.hs index 0729a7f6..21670a6e 100644 --- a/src/Servant/API.hs +++ b/src/Servant/API.hs @@ -24,6 +24,10 @@ module Servant.API ( -- | PUT requests module Servant.API.Put, + -- * Untyped endpoints + -- | Plugging in a wai 'Network.Wai.Application' + module Servant.API.Raw, + -- * Utilities -- | QuasiQuotes for endpoints module Servant.Utils.ApiQuasiQuoting, @@ -38,6 +42,7 @@ import Servant.API.Get import Servant.API.Post import Servant.API.Put import Servant.API.QueryParam +import Servant.API.Raw import Servant.API.ReqBody import Servant.API.Sub import Servant.Utils.ApiQuasiQuoting (sitemap)