module MvPlugin # # Plugins for moving (renaming) accounts. # def mv_domain(from. to) # Rename the given domain. raise NotImplementedError end def mv_account(from, to) # Rename the given account. raise NotImplementedError end end