Bug 22417: Fix the batch authority tool
[koha.git] / Koha / BackgroundJobs.pm
1 package Koha::BackgroundJobs;
2
3 use Modern::Perl;
4 use base qw(Koha::Objects);
5 use Koha::BackgroundJob;
6
7 sub _type {
8     return 'BackgroundJob';
9 }
10
11 sub object_class {
12     return 'Koha::BackgroundJob';
13 }
14
15 1;