]> gitweb.michael.orlitzky.com - mailshears.git/blob - lib/mv/mv_plugin.rb
Add more TODO items and remove the one about YARD docs (coming in a second).
[mailshears.git] / lib / mv / mv_plugin.rb
1 module MvPlugin
2 #
3 # Plugins for moving (renaming) users.
4 #
5
6 extend Plugin::Run
7
8 def self.runner()
9 return MvRunner
10 end
11
12 def self.dummy_runner()
13 return MvDummyRunner
14 end
15
16 def mv_user(src, dst)
17 # Rename the given user.
18 raise NotImplementedError
19 end
20
21 end