14 lines
277 B
PHP
14 lines
277 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
define('CONTROL_API_LIBRARY', true);
|
|
|
|
require __DIR__ . '/../public/api.php';
|
|
|
|
$type = (string)($argv[1] ?? '');
|
|
if ($type === 'wifi') {
|
|
wifi_scan_refresh_payload();
|
|
} elseif ($type === 'bluetooth') {
|
|
bluetooth_scan_refresh_payload();
|
|
}
|