This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
Foodloop-Server/lib/Pear/LocalLoop/Plugin/Minion/Job.pm

13 lines
192 B
Perl
Raw Normal View History

package Pear::LocalLoop::Plugin::Minion::Job;
use Mojo::Base -base;
2021-03-20 12:09:50 +00:00
has [qw/ job /];
has app => sub { shift->job->app };
sub run {
2021-03-20 12:09:50 +00:00
die( __PACKAGE__ . " must implement run sub" );
}
1;