19 lines
294 B
PHP
19 lines
294 B
PHP
<?php
|
|
|
|
namespace App\Settings;
|
|
|
|
use Spatie\LaravelSettings\Settings;
|
|
|
|
class ExposerSettings extends Settings
|
|
{
|
|
public string $exposer_bind;
|
|
public int $exposer_thread;
|
|
|
|
public string $exposer_auth;
|
|
|
|
public static function group(): string
|
|
{
|
|
return 'exposer';
|
|
}
|
|
}
|