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

11 lines
333 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.
data EmptyAPI = EmptyAPI deriving (Typeable, Eq, Show, Bounded)