Began a complete rewrite of command and plugin management.
Wrote a command routing statement, added an IrcPlugin monad.
This commit is contained in:
parent
047a10bc9b
commit
fd8d5faf5f
12 changed files with 244 additions and 87 deletions
2
Hsbot.hs
2
Hsbot.hs
|
@ -4,6 +4,7 @@ module Hsbot
|
|||
, module Hsbot.Core
|
||||
, module Hsbot.IRC
|
||||
, module Hsbot.IRCParser
|
||||
, module Hsbot.IRCPlugin
|
||||
, module Hsbot.Main
|
||||
, module Hsbot.Plugin
|
||||
, module Hsbot.Types
|
||||
|
@ -15,6 +16,7 @@ import Hsbot.Command
|
|||
import Hsbot.Core
|
||||
import Hsbot.IRC
|
||||
import Hsbot.IRCParser
|
||||
import Hsbot.IRCPlugin
|
||||
import Hsbot.Main
|
||||
import Hsbot.Plugin
|
||||
import Hsbot.Types
|
||||
|
|
Reference in a new issue