]> gitweb.michael.orlitzky.com - list-remote-forwards.git/blobdiff - src/MxList.hs
list-remote-forwards.cabal: delete the redundant description
[list-remote-forwards.git] / src / MxList.hs
index ce0e6490c3bd2d64c26beff26574151cc5d31e67..6a03870c0939ea71950f7f075235c90e36249d48 100644 (file)
@@ -5,7 +5,8 @@
 --   instance of Configured for [String] if we had defined one in
 --   e.g. 'OptionalConfiguration'.
 --
-module MxList
+module MxList (
+  MxList( MxList, get_mxs ) )
 where
 
 -- DC is needed only for the DCT.Configured instance of String.
@@ -15,15 +16,14 @@ import qualified Data.Configurator.Types as DCT (
   Value( List ),
   convert )
 import Data.Data (Data)
-import System.Console.CmdArgs.Default (Default(..))
-import Data.Typeable (Typeable)
+import System.Console.CmdArgs.Default ( Default( def ) )
 
 
 -- | A (wrapper around a) list of MX hostnames.
 --
 newtype MxList =
   MxList { get_mxs :: [String] }
-    deriving (Data, Show, Typeable)
+    deriving (Data, Show)
 
 
 -- | The default (empty) list of MXes.