From a46f286ce2e6b5beace550961ff6859fbba6aab6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=9Cmit=20Tun=C3=A7?= Date: Tue, 21 Jan 2025 21:47:01 +0300 Subject: [PATCH] Add FetchCryptoCurrencyRates job to Console Kernel - Introduced the FetchCryptoCurrencyRates job in the Console Kernel to facilitate the fetching of cryptocurrency rates. - This addition enhances the scheduled tasks functionality, allowing for better integration of cryptocurrency data within the application. --- app/Console/Kernel.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index 04fb9ef..1d18bb1 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -7,6 +7,7 @@ use Illuminate\Foundation\Console\Kernel as ConsoleKernel; use App\Jobs\FetchCurrencyRates; use App\Jobs\FetchGoldRates; use App\Jobs\MergeCurrencyAndGoldRates; +use App\Jobs\FetchCryptoCurrencyRates; class Kernel extends ConsoleKernel {