servant/servant-foreign/src/Servant/Foreign.hs

37 lines
621 B
Haskell
Raw Normal View History

2015-11-16 18:40:15 +01:00
-- | Generalizes all the data needed to make code generation work with
-- arbitrary programming languages.
module Servant.Foreign
( HasForeign(..)
, HasForeignType(..)
2015-11-16 18:40:15 +01:00
, Segment(..)
, SegmentType(..)
, FunctionName
, QueryArg(..)
, HeaderArg(..)
, ArgType(..)
, Req
, captureArg
, defReq
, concatCase
, snakeCase
, camelCase
-- lenses
, argType
, argName
, isCapture
, funcName
, path
, reqUrl
, reqBody
, reqHeaders
, reqMethod
, reqReturnType
2015-11-16 18:40:15 +01:00
, segment
, queryStr
-- re-exports
, module Servant.API
) where
import Servant.API
import Servant.Foreign.Internal