Add SyncNostrProfilesCommand to dispatch Nostr profile sync job

This commit is contained in:
HolgerHatGarKeineNode
2025-11-24 00:53:38 +01:00
parent 23becb255b
commit 33b599702c

View File

@@ -0,0 +1,18 @@
<?php
namespace App\Console\Commands\Nostr;
use App\Jobs\FetchNostrProfileJob;
use Illuminate\Console\Command;
class SyncNostrProfilesCommand extends Command
{
protected $signature = 'nostr:sync-nostr-profiles';
protected $description = 'Command description';
public function handle(): void
{
FetchNostrProfileJob::dispatch();
}
}