2014-12-10 16:10:57 +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,
|
|
|
|
-- | Utilities on top of the servant core
|
|
|
|
module Servant.Utils.Links,
|
|
|
|
module Servant.Utils.StaticFiles,
|
|
|
|
-- | Useful re-exports
|
|
|
|
Proxy(..),
|
|
|
|
) where
|
|
|
|
|
2015-08-17 23:56:29 +02:00
|
|
|
import Data.Proxy
|
|
|
|
import Servant.API
|
|
|
|
import Servant.Server
|
|
|
|
import Servant.Utils.Links
|
|
|
|
import Servant.Utils.StaticFiles
|