]> gitweb.michael.orlitzky.com - mailshears.git/blobdiff - lib/mv/mv_plugin.rb
Begin updating docs; remove two unused exit codes.
[mailshears.git] / lib / mv / mv_plugin.rb
index c5647f2c92a6ecee0915fa5ab96504c3f04e615e..089e6c772bc7d9ddec80db26359449aae08b2c73 100644 (file)
@@ -1,15 +1,20 @@
 module MvPlugin
   #
-  # Plugins for moving (renaming) accounts.
+  # Plugins for moving (renaming) users.
   #
 
-  def mv_domain(from. to)
-    # Rename the given domain.
-    raise NotImplementedError
+  extend Plugin::Run
+
+  def self.runner()
+    return MvRunner
+  end
+
+  def self.dummy_runner()
+    return MvDummyRunner
   end
 
-  def mv_account(from, to)
-    # Rename the given account.
+  def mv_user(src, dst)
+    # Rename the given user.
     raise NotImplementedError
   end