Archived
1
0
Fork 0

Continue refactoring, worked on the core loop and the plugin infrastructure.

This commit is contained in:
Julien Dessaux 2011-04-23 13:35:04 +02:00
parent ff07633fb8
commit d4be110200
7 changed files with 140 additions and 38 deletions

9
Hsbot/Message.hs Normal file
View file

@ -0,0 +1,9 @@
module Hsbot.Message
( Message (..)
) where
import qualified Network.IRC as IRC
data Message = IncomingMsg IRC.Message
| OutgoingMsg IRC.Message