Refactor Console Kernel to include MergeCurrencyAndGoldRates job

- Added the MergeCurrencyAndGoldRates job to the Console Kernel, ensuring it is now part of the job dispatching process.
- This change improves the overall functionality of scheduled tasks related to currency and gold rates, enhancing data integration within the Truncgil Finance application.
This commit is contained in:
Ümit Tunç
2025-01-21 22:29:17 +03:00
parent 9409a4dbd9
commit 0d6e449808
+1 -1
View File
@@ -6,8 +6,8 @@ use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
use App\Jobs\FetchCurrencyRates;
use App\Jobs\FetchGoldRates;
use App\Jobs\MergeCurrencyAndGoldRates;
use App\Jobs\FetchCryptoCurrencyRates;
use App\Jobs\MergeCurrencyAndGoldRates;
class Kernel extends ConsoleKernel
{