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.
This commit is contained in:
Ümit Tunç
2025-01-21 21:47:01 +03:00
parent bf016af07c
commit a46f286ce2
+1
View File
@@ -7,6 +7,7 @@ use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
use App\Jobs\FetchCurrencyRates; use App\Jobs\FetchCurrencyRates;
use App\Jobs\FetchGoldRates; use App\Jobs\FetchGoldRates;
use App\Jobs\MergeCurrencyAndGoldRates; use App\Jobs\MergeCurrencyAndGoldRates;
use App\Jobs\FetchCryptoCurrencyRates;
class Kernel extends ConsoleKernel class Kernel extends ConsoleKernel
{ {