servant/servant/src/Servant/API/Empty.hs

13 lines
501 B
Haskell
Raw Normal View History

2017-05-16 10:18:16 +02:00
{-# LANGUAGE DeriveDataTypeable #-}
{-# OPTIONS_HADDOCK not-home #-}
module Servant.API.Empty(EmptyAPI(..)) where
import Data.Typeable (Typeable)
import Prelude ()
import Prelude.Compat
-- | An empty API: one which serves nothing. Morally speaking, this should be
-- the unit of ':<|>'. Implementors of interpretations of API types should
-- treat 'EmptyAPI' as close to the unit as possible.
2017-05-16 18:04:25 +02:00
data EmptyAPI = EmptyAPI deriving (Typeable, Eq, Show, Bounded, Enum)