Properly export ToAuthInfo and AuthenticationInfo

This commit is contained in:
aaron levin 2015-09-13 23:36:30 +02:00 committed by Arian van Putten
parent 6a626cdecd
commit ce554a2f6b

View file

@ -149,11 +149,13 @@ module Servant.Docs
, DocOptions(..) , defaultDocOptions, maxSamples , DocOptions(..) , defaultDocOptions, maxSamples
, -- * Classes you need to implement for your types , -- * Classes you need to implement for your types
<<<<<<< HEAD
ToSample(..) ToSample(..)
, toSample , toSample
, noSamples , noSamples
, singleSample , singleSample
, samples , samples
ToAuthInfo(..)
, sampleByteString , sampleByteString
, sampleByteStrings , sampleByteStrings
, ToParam(..) , ToParam(..)
@ -163,12 +165,13 @@ module Servant.Docs
Method(..) Method(..)
, Endpoint, path, method, defEndpoint , Endpoint, path, method, defEndpoint
, API, apiIntros, apiEndpoints, emptyAPI , API, apiIntros, apiEndpoints, emptyAPI
, AuthenticationInfo(..), authIntro, authDataRequired
, DocCapture(..), capSymbol, capDesc , DocCapture(..), capSymbol, capDesc
, DocQueryParam(..), ParamKind(..), paramName, paramValues, paramDesc, paramKind , DocQueryParam(..), ParamKind(..), paramName, paramValues, paramDesc, paramKind
, DocNote(..), noteTitle, noteBody , DocNote(..), noteTitle, noteBody
, DocIntro(..), introTitle, introBody , DocIntro(..), introTitle, introBody
, Response(..), respStatus, respTypes, respBody, defResponse , Response(..), respStatus, respTypes, respBody, defResponse
, Action, captures, headers, notes, params, rqtypes, rqbody, response, defAction , Action, authInfo, captures, headers, notes, params, rqtypes, rqbody, response, defAction
, single , single
) where ) where