]> gitweb.michael.orlitzky.com - list-remote-forwards.git/blobdiff - src/MxList.hs
src/MxList.hs: use an explicit export list.
[list-remote-forwards.git] / src / MxList.hs
index d79307da86a42e459f9cf2ffa5f13449cefbfbc1..e31e7f4be8ab655dcecfbc7052948a2b7497ed62 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(..) )
 where
 
 -- DC is needed only for the DCT.Configured instance of String.
@@ -27,9 +28,11 @@ newtype MxList =
 
 
 -- | The default (empty) list of MXes.
+--
 instance Default MxList where
   def = MxList []
 
+
 instance DCT.Configured MxList where
   -- | This allows us to read a MxList object out of a Configurator
   --   config file. By default Configurator wouldn't know what to do,