fedi-feed-router/routes/console.php

7 lines
160 B
PHP
Raw Normal View History

2025-06-29 08:50:03 +02:00
<?php
2025-06-29 09:37:49 +02:00
use App\Console\Commands\FetchNewArticlesCommand;
use Illuminate\Support\Facades\Schedule;
2025-06-29 08:50:03 +02:00
2025-06-29 18:34:13 +02:00
Schedule::command(FetchNewArticlesCommand::class)->hourly();