diff options
author | tv <tv@krebsco.de> | 2017-05-23 20:02:26 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2017-05-23 20:02:26 +0200 |
commit | 9a698e0c32bc413bce575bfd9aaeaa5364afc403 (patch) | |
tree | c42671245a8650c2fb51bf7caa0e2fff40abcefc | |
parent | c78f3c62c0ba76465e39d1570073f867aa2d4240 (diff) |
Config -> Kirk.Config
-rw-r--r-- | Kirk/Config.hs (renamed from Config.hs) | 2 | ||||
-rw-r--r-- | ircout.hs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Config.hs b/Kirk/Config.hs index fc959e1..d123aab 100644 --- a/Config.hs +++ b/Kirk/Config.hs @@ -1,7 +1,7 @@ {-# LANGUAGE ApplicativeDo #-} {-# LANGUAGE RecordWildCards #-} -module Config +module Kirk.Config ( Config(..) , parseConfigFromArgs ) @@ -10,7 +10,7 @@ import Network (withSocketsDo,PortID(..),connectTo) import qualified Data.ByteString.Char8 as BS8 import System.IO (hSetBuffering,hSetNewlineMode,hPutStrLn,hClose,hGetLine,BufferMode(LineBuffering),universalNewlineMode,Handle) -import Config +import Kirk.Config main :: IO () |