mempool weather added

This commit is contained in:
HolgerHatGarKeineNode
2023-03-31 15:54:11 +02:00
parent 876c69ba5c
commit 4bca05b998
9 changed files with 528 additions and 8 deletions

View File

@@ -4,6 +4,7 @@ namespace App\Console;
use App\Console\Commands\Database\CleanupLoginKeys;
use App\Console\Commands\Feed\ReadAndSyncPodcastFeeds;
use App\Console\Commands\MempoolSpace\CacheRecommendedFees;
use App\Console\Commands\Nostr\PublishUnpublishedItems;
use App\Console\Commands\OpenBooks\SyncOpenBooks;
use Illuminate\Console\Scheduling\Schedule;
@@ -22,6 +23,7 @@ class Kernel extends ConsoleKernel
*/
protected function schedule(Schedule $schedule): void
{
$schedule->command(CacheRecommendedFees::class)->hourly();
$schedule->call(new PruneStaleAttachments)
->daily();
$schedule->command(SyncOpenBooks::class)