Archived
1
0
Fork 0

Made the Plugin monad a Reader instead of a State since it can't change.

This commit is contained in:
Julien Dessaux 2011-05-06 19:15:40 +02:00
parent 4ec66d2ad7
commit a8c0c85787
7 changed files with 15 additions and 22 deletions

View file

@ -6,7 +6,7 @@ module Hsbot.Plugin.Duck
import Control.Concurrent.Chan ()
import qualified Data.List as L
import Control.Monad.State
import Control.Monad.Reader
import qualified Network.IRC as IRC
import Prelude hiding (catch)

View file

@ -4,7 +4,7 @@ module Hsbot.Plugin.Ping
) where
import Control.Concurrent.Chan ()
import Control.Monad.State
import Control.Monad.Reader
import qualified Network.IRC as IRC
import Prelude hiding (catch)