19 lines
299 B
PHP
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';
|
|
}
|
|
}
|