Files
data-collection-terminal/management-panel/app/Settings/ExporterSettings.php
2024-08-27 17:02:53 +08:00

19 lines
299 B
PHP

<?php
namespace App\Settings;
use Spatie\LaravelSettings\Settings;
class ExporterSettings extends Settings
{
public string $exporter_bind;
public int $exporter_thread;
public string $exporter_auth;
public static function group(): string
{
return 'exporter';
}
}