13 lines
272 B
Perl
13 lines
272 B
Perl
package Pear::LocalLoop::Plugin::Minion::Job::test;
|
|
use Mojo::Base 'Pear::LocalLoop::Plugin::Minion::Job';
|
|
|
|
sub run {
|
|
my ( $self, @args ) = @_;
|
|
|
|
$self->job->app->log->debug( 'Testing Job' );
|
|
for my $arg ( @args ) {
|
|
$self->job->app->log->debug( $arg );
|
|
}
|
|
}
|
|
|
|
1;
|