aboutsummaryrefslogtreecommitdiffstats
path: root/src/PluginList.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/PluginList.hs')
-rw-r--r--src/PluginList.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/PluginList.hs b/src/PluginList.hs
index bd2af35..070033a 100644
--- a/src/PluginList.hs
+++ b/src/PluginList.hs
@@ -2,6 +2,7 @@ module PluginList
( plugins
) where
+import Bot (Bot)
import Plugin.Base (Plugin)
import Plugin.Factorial (factorial)
import Plugin.GitHubCommit (gitHubCommit)
@@ -9,7 +10,7 @@ import Plugin.GitRemoteSetOrigin (gitRemoteSetOrigin)
-- | The list of plugins to load, minus the Help plugin, which would otherwise
-- cause a circular import.
-plugins :: [Plugin]
+plugins :: [Bot Plugin]
plugins =
[ factorial
, gitHubCommit