1 {-# LANGUAGE DeriveDataTypeable #-}
7 import Data.Data ( Data )
8 import Data.Typeable ( Typeable )
9 import System.Console.CmdArgs.Default ( Default(..) )
11 -- | An enumeration type for the allowed database backends.
12 data Backend = Sqlite | Postgres
13 deriving (Data, Read, Show, Typeable)
15 instance Default Backend where