]> gitweb.michael.orlitzky.com - mailshears.git/blobdiff - lib/common/runner.rb
Get the MvRunner working, at least for Postfixadmin.
[mailshears.git] / lib / common / runner.rb
index c48f89a4f629168d657142871bc19f46ed781c27..32f2b3ecf8bb0354408fb7fbe46596155e2baf3a 100644 (file)
@@ -1,5 +1,12 @@
 module Runner
+
   def run(plugin, targets)
     raise NotImplementedError
   end
+
+  def report(plugin, msg)
+    print "#{plugin.class.to_s()} - "
+    puts msg
+  end
+
 end