servant/src/Servant/API/ContentTypes.hs

14 lines
310 B
Haskell
Raw Normal View History

2015-01-08 16:24:19 +01:00
{-# LANGUAGE DeriveDataTypeable #-}
module Servant.API.ContentTypes where
import Data.Typeable
2015-01-08 16:24:19 +01:00
data XML deriving Typeable
data HTML deriving Typeable
data JSON deriving Typeable
data JavaScript deriving Typeable
data CSS deriving Typeable
data PlainText deriving Typeable
data OctetStream deriving Typeable