mirror of
https://github.com/usetrmnl/byos_laravel.git
synced 2026-01-13 15:07:49 +00:00
8 lines
296 B
PHP
8 lines
296 B
PHP
<?php
|
|
|
|
use App\Jobs\FetchProxyCloudResponses;
|
|
|
|
Schedule::job(FetchProxyCloudResponses::class, [])->cron(
|
|
config('services.trmnl.proxy_refresh_cron') ? config('services.trmnl.proxy_refresh_cron') :
|
|
sprintf('*/%s * * * *', intval(config('services.trmnl.proxy_refresh_minutes', 15)))
|
|
);
|