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