]> gitweb.michael.orlitzky.com - haeredes.git/blobdiff - src/Timeout.hs
src/Timeout.hs: add export list to silence a GHC warning.
[haeredes.git] / src / Timeout.hs
index 0b0f2e12798d507737cdcf203c33c9957b2e4855..8184b3eae92f6339e87e9834277b0f6fe0b7b114 100644 (file)
@@ -3,11 +3,11 @@
 -- | A newtype around the DNS query timeout, in seconds. Needed for
 --   the 'Default' instance.
 --
-module Timeout
+module Timeout (Timeout(..))
 where
 
 import Data.Data (Data)
-import System.Console.CmdArgs.Default (Default(..))
+import System.Console.CmdArgs.Default (Default(def))
 
 newtype Timeout =
   Timeout { seconds :: Int }