]> gitweb.michael.orlitzky.com - mailshears.git/blobdiff - lib/mv/mv_plugin.rb
Factor out plugin running into the Plugin module (along with the includers() handling).
[mailshears.git] / lib / mv / mv_plugin.rb
index 76fad8395cf6454666d3caf1b3ed3e7401dce0cb..4b616032b5cfc312c74e790d685bf70ff167f15b 100644 (file)
@@ -1,15 +1,25 @@
 module MvPlugin
   #
-  # Plugins for moving (renaming) accounts.
+  # Plugins for moving (renaming) users.
   #
 
+  extend Plugin::Run
+
+  def self.runner()
+    return MvRunner
+  end
+
+  def self.dummy_runner()
+    return MvDummyRunner
+  end
+
   def mv_domain(from, to)
     # Rename the given domain.
     raise NotImplementedError
   end
 
-  def mv_account(from, to)
-    # Rename the given account.
+  def mv_user(from, to)
+    # Rename the given user.
     raise NotImplementedError
   end