servant/servant/src/Servant/API/Raw.hs

17 lines
751 B
Haskell
Raw Normal View History

{-# LANGUAGE DeriveDataTypeable #-}
2015-05-02 03:21:03 +02:00
{-# OPTIONS_HADDOCK not-home #-}
module Servant.API.Raw where
2018-03-11 16:58:31 +01:00
import Data.Typeable
(Typeable)
-- | Endpoint for plugging in your own Wai 'Application's.
--
-- The given 'Application' will get the request as received by the server, potentially with
-- a modified (stripped) 'pathInfo' if the 'Application' is being routed with 'Servant.API.Sub.:>'.
2014-11-22 18:04:19 +01:00
--
-- In addition to just letting you plug in your existing WAI 'Application's,
2016-03-18 15:54:22 +01:00
-- this can also be used with <https://hackage.haskell.org/package/servant-server/docs/Servant-Utils-StaticFiles.html#v:serveDirectory serveDirectory> to serve
-- static files stored in a particular directory on your filesystem
data Raw deriving Typeable