servant/src/Servant.hs

25 lines
727 B
Haskell
Raw Normal View History

2014-10-28 10:12:25 +01:00
module Servant (
-- | This module and its submodules can be used to define servant APIs. Note
-- that these API definitions don't directly implement a server (or anything
-- else).
module Servant.API,
-- | For implementing servers for servant APIs.
module Servant.Server,
2014-11-22 19:19:21 +01:00
-- | Using your types in request paths and query string parameters
module Servant.Common.Text,
2014-11-12 06:21:59 +01:00
-- | Utilities on top of the servant core
module Servant.QQ,
2014-11-12 06:21:59 +01:00
module Servant.Utils.Links,
module Servant.Utils.StaticFiles,
-- | Useful re-exports
Proxy(..),
) where
import Data.Proxy
import Servant.API
import Servant.Common.Text
import Servant.Server
import Servant.QQ
2014-11-12 06:21:59 +01:00
import Servant.Utils.Links
import Servant.Utils.StaticFiles