byos_laravel/app/Console/Commands/FetchProxyCloudResponsesCommand.php
Benjamin Nussbaum 715e6a2562 add features
* feat: autojoin toggle
* feat: auto add devices
* feat: proxy feature
* feat: support puppeteer in docker
* feat: toggle to activate cloud proxy
* feat: relay device information
* feat: relay logs to cloud
* feat: migrate on start
* feat: calculate battery state, wifi signal
* feat: eye candy for configure view
* feat: update via api
2025-03-03 21:24:22 +01:00

18 lines
369 B
PHP

<?php
namespace App\Console\Commands;
use App\Jobs\FetchProxyCloudResponses;
use Illuminate\Console\Command;
class FetchProxyCloudResponsesCommand extends Command
{
protected $signature = 'trmnl:cloud:proxy';
protected $description = 'Fetch Cloud Screens';
public function handle(): void
{
FetchProxyCloudResponses::dispatchSync();
}
}