]> gitweb.michael.orlitzky.com - mailshears.git/blobdiff - lib/mailshears/rm_plugin.rb
Begin building the framework to rename accounts. A pile of crap right now.
[mailshears.git] / lib / mailshears / rm_plugin.rb
diff --git a/lib/mailshears/rm_plugin.rb b/lib/mailshears/rm_plugin.rb
deleted file mode 100644 (file)
index 0c155a1..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-module RmPlugin
-  #
-  # Plugins for the removal of accounts.
-  #
-
-  def delete_domain(domain)
-    # Delete the given domain.
-    raise NotImplementedError
-  end
-
-  def delete_account(account)
-    # Delete the given account.
-    raise NotImplementedError
-  end
-
-  def get_leftover_domains(db_domains)
-    # Given a list of domains, determine which domains belonging to
-    # this plugin are not contained in the given list.
-    raise NotImplementedError
-  end
-
-  def get_leftover_accounts(db_accounts)
-    # Given a list of accounts, determine which accounts belonging to
-    # this plugin are not contained in the given list.
-    raise NotImplementedError
-  end
-end