Remove requirement for dummy command method in hook-only plugins

This commit is contained in:
Juerd Waalboer 2021-12-03 01:47:28 +01:00
parent cf8ce7dc52
commit 6850ed22be
15 changed files with 8 additions and 27 deletions

View file

@ -1,10 +1,14 @@
package RevBank::Plugin;
use strict;
require RevBank::Global;
sub new {
my ($class) = @_;
return bless { }, $class;
}
sub command {
return RevBank::Global::NEXT();
}
1;