mirror of
https://github.com/sp-tarkov/forge.git
synced 2025-02-13 04:30:41 -05:00
9 lines
192 B
PHP
9 lines
192 B
PHP
<?php
|
|
|
|
use App\Console\Commands\ImportHub;
|
|
use Illuminate\Support\Facades\Schedule;
|
|
|
|
Schedule::command(ImportHub::class)->hourly();
|
|
|
|
Schedule::command('horizon:snapshot')->everyFiveMinutes();
|