diff options
author | Teddy Wing | 2017-08-20 10:45:23 +0200 |
---|---|---|
committer | Teddy Wing | 2017-08-20 10:45:23 +0200 |
commit | d7599fd70e0918ce5871c287574a2dbb21f73f85 (patch) | |
tree | 0dfb766ebe9b1226aade05eea0dfceb1623d4061 /src/Plugin.hs | |
parent | 8373264c3b0c7ad13c7e207e70f2732c9f2dbc1a (diff) | |
download | sorbot-d7599fd70e0918ce5871c287574a2dbb21f73f85.tar.bz2 |
Move `PluginList` out of `Plugin` directory
Asking for `Plugin.Plugin...` is redundant. Take this module out of the
`Plugin` directory to eliminate the repetition in naming.
Diffstat (limited to 'src/Plugin.hs')
-rw-r--r-- | src/Plugin.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Plugin.hs b/src/Plugin.hs index 30b5ab8..9e5bcdd 100644 --- a/src/Plugin.hs +++ b/src/Plugin.hs @@ -10,7 +10,7 @@ import Text.Regex.TDFA import qualified Message as M import Plugin.Base -import qualified Plugin.PluginList as PL (plugins) +import qualified PluginList as PL (plugins) import Plugin.Help -- | Get the first plugin that matches the given message text. |