summaryrefslogtreecommitdiff
path: root/Hsbot/PluginUtils.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Hsbot/PluginUtils.hs')
-rw-r--r--Hsbot/PluginUtils.hs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Hsbot/PluginUtils.hs b/Hsbot/PluginUtils.hs
new file mode 100644
index 0000000..d09b3b4
--- /dev/null
+++ b/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
+