From 11c2c16835b3e8368be77ccc5b7ddf949021eccd Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Sat, 3 Jul 2010 21:26:00 +0200 Subject: Moved files around as a preliminary for architectural changes. --- HsbotMaster/Hsbot/PluginUtils.hs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 HsbotMaster/Hsbot/PluginUtils.hs (limited to 'HsbotMaster/Hsbot/PluginUtils.hs') diff --git a/HsbotMaster/Hsbot/PluginUtils.hs b/HsbotMaster/Hsbot/PluginUtils.hs new file mode 100644 index 0000000..d09b3b4 --- /dev/null +++ b/HsbotMaster/Hsbot/PluginUtils.hs @@ -0,0 +1,15 @@ +module Hsbot.PluginUtils + ( sendToPlugin + ) where + +import Control.Concurrent +import Control.Concurrent.Chan () +import Control.Monad.State + +import Hsbot.Types + +-- | Sends a msg to a plugin +sendToPlugin :: BotMsg -> PluginState -> Bot () +sendToPlugin botMsg plugin = do + liftIO $ writeChan (pluginChan plugin) botMsg + -- cgit v1.2.3