Files
einundzwanzig-app/app/Console/Commands/Nostr/SyncNostrProfilesCommand.php
2025-11-24 00:53:38 +01:00

19 lines
364 B
PHP

<?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();
}
}