Version auf unstable gesetzt
[kivitendo-erp.git] / SL / BackgroundJob / ALL.pm
1 package SL::BackgroundJob::ALL;
2
3 use strict;
4
5 use SL::BackgroundJob::Base;
6 use SL::BackgroundJob::BackgroundJobCleanup;
7 use SL::BackgroundJob::CleanAuthSessions;
8 use SL::BackgroundJob::CleanBackgroundJobHistory;
9 use SL::BackgroundJob::CloseProjectsBelongingToClosedSalesOrders;
10 use SL::BackgroundJob::ConvertTimeRecordings;
11 use SL::BackgroundJob::CreatePeriodicInvoices;
12 use SL::BackgroundJob::CsvImport;
13 use SL::BackgroundJob::FailedBackgroundJobsReport;
14 use SL::BackgroundJob::MassDeliveryOrderPrinting;
15 use SL::BackgroundJob::MassRecordCreationAndPrinting;
16 use SL::BackgroundJob::SelfTest;
17 use SL::BackgroundJob::SelfTest::Base;
18 use SL::BackgroundJob::SelfTest::Transactions;
19 use SL::BackgroundJob::SetNumberRange;
20 use SL::BackgroundJob::ShopOrderMassTransfer;
21 use SL::BackgroundJob::ShopPartMassUpload;
22 use SL::BackgroundJob::Test;
23
24 1;