Archived
1
0
Fork 0

Rewrote nearly everything!

* Rewrote the whole architecture to achieve extreme modularity
* Added the ability to build a multiprotocol bot
* Added cabal integration
* Added configuration handling the XMonad style
* Added configuration in ~/.hsbot
* Refactored many many named and functions
* Refactored data structures
* Cleaned a big bunch of stuff
This commit is contained in:
Julien Dessaux 2010-05-16 00:01:00 +02:00
parent c20cfe88b3
commit c1662ba7b9
33 changed files with 856 additions and 654 deletions

View file

@ -1,30 +0,0 @@
module Hsbot
( module Config
, module Hsbot.Command
, module Hsbot.Core
, module Hsbot.IRC
, module Hsbot.IRCParser
, module Hsbot.IRCPlugin
, module Hsbot.Main
, module Hsbot.Plugin
, module Hsbot.Types
, module Hsbot.Utils
, module Plugins.Core
, module Plugins.Ping
, module Plugins.Quote
) where
import Config
import Hsbot.Command
import Hsbot.Core
import Hsbot.IRC
import Hsbot.IRCParser
import Hsbot.IRCPlugin
import Hsbot.Main
import Hsbot.Plugin
import Hsbot.Types
import Hsbot.Utils
import Plugins.Core
import Plugins.Ping
import Plugins.Quote