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

21 lines
892 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,
2019-11-12 08:57:14 +01:00
-- this can also be used with functions from
-- <https://hackage.haskell.org/package/servant-server/docs/Servant-Server-StaticFiles.html Servant.Server.StaticFiles>
-- to serve static files stored in a particular directory on your filesystem
data Raw deriving Typeable
-- | Variant of 'Raw' that lets you access the underlying monadic context to process the request.
data RawM deriving Typeable