diff options
Diffstat (limited to 'src/PluginList.hs')
-rw-r--r-- | src/PluginList.hs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/PluginList.hs b/src/PluginList.hs new file mode 100644 index 0000000..bfcae7e --- /dev/null +++ b/src/PluginList.hs @@ -0,0 +1,15 @@ +module PluginList + ( plugins + ) where + +import Plugin.Base (Plugin) +import Plugin.GitHubCommit +import Plugin.GitRemoteSetOrigin + +-- | The list of plugins to load, minus the Help plugin, which would otherwise +-- cause a circular import. +plugins :: [Plugin] +plugins = + [ gitHubCommit + , gitRemoteSetOrigin + ] |