aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2017-08-02 00:24:50 +0200
committerTeddy Wing2017-08-02 00:24:50 +0200
commit2fb79b3ddf26cb099bc4a5daebeb873d77989516 (patch)
treefe110f348e5577e1afb15d82a908fd3029b3ad49
parente40b06ecefe4f2246ea78d90433c3a09a7aebe6a (diff)
downloadsorbot-2fb79b3ddf26cb099bc4a5daebeb873d77989516.tar.bz2
Plugin/Base.hs: Remove duplicated exports
When I added the `Plugin(..)` export, I didn't think to remove the exports for the functions created by the Plugin record data type. Didn't see the warnings from the compiler when building until now.
-rw-r--r--src/Plugin/Base.hs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/Plugin/Base.hs b/src/Plugin/Base.hs
index c73ef6a..329c21a 100644
--- a/src/Plugin/Base.hs
+++ b/src/Plugin/Base.hs
@@ -2,8 +2,6 @@ module Plugin.Base
( PluginAction
, Plugin(..)
- , matchRegex
- , perform
) where
type PluginAction = String -> String