packages feed

buffet-0.2.0: src/Buffet/Document/Configuration.hs

module Buffet.Document.Configuration
  ( Configuration(..)
  ) where

import Prelude (Eq, FilePath, Maybe, Ord, Show)

newtype Configuration =
  Configuration
    { template :: Maybe FilePath
    }
  deriving (Eq, Ord, Show)