]> gitweb.michael.orlitzky.com - mailshears.git/blob - lib/common/runner.rb
Move the LICENSE and README into a doc/ folder.
[mailshears.git] / lib / common / runner.rb
1 module Runner
2 def run(plugin, targets)
3 raise NotImplementedError
4 end
5
6 def report(plugin, msg)
7 print "#{plugin.class.to_s()} - "
8 puts msg
9 end
10
11 end