mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2025-12-14 12:06:46 +00:00
19 lines
364 B
PHP
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();
|
|
}
|
|
}
|