diff options
author | Julien Dessaux | 2010-05-24 23:50:59 +0200 |
---|---|---|
committer | Julien Dessaux | 2010-05-24 23:52:47 +0200 |
commit | 8b33600f3818edd9aa9dedfa7a9a03d6e2af3276 (patch) | |
tree | 50a8ae73d0c67df2f9349d96fd47b65a10244185 /Hsbot/Irc | |
parent | Implemented ircbot update messages. (diff) | |
download | hsbot-8b33600f3818edd9aa9dedfa7a9a03d6e2af3276.tar.gz hsbot-8b33600f3818edd9aa9dedfa7a9a03d6e2af3276.tar.bz2 hsbot-8b33600f3818edd9aa9dedfa7a9a03d6e2af3276.zip |
Implemented update message handling in the bot's core.
Diffstat (limited to '')
-rw-r--r-- | Hsbot/Irc/Core.hs | 2 | ||||
-rw-r--r-- | Hsbot/Irc/Types.hs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Hsbot/Irc/Core.hs b/Hsbot/Irc/Core.hs index 1a51a5c..936ced6 100644 --- a/Hsbot/Irc/Core.hs +++ b/Hsbot/Irc/Core.hs @@ -19,7 +19,7 @@ import Hsbot.Irc.Message import Hsbot.Irc.Plugin import Hsbot.Irc.Server import Hsbot.Irc.Types -import Hsbot.Message +import Hsbot.Types -- | IrcBot's main entry point startIrcbot :: IrcConfig -> Chan BotMsg -> Chan BotMsg -> IO () diff --git a/Hsbot/Irc/Types.hs b/Hsbot/Irc/Types.hs index 90bd728..440de64 100644 --- a/Hsbot/Irc/Types.hs +++ b/Hsbot/Irc/Types.hs @@ -14,7 +14,7 @@ import System.IO import Hsbot.Irc.Config import Hsbot.Irc.Message import Hsbot.Irc.Plugin.Utils -import Hsbot.Message +import Hsbot.Types -- | The Ircbot monad type IrcBot = StateT IrcBotState IO |