[增添]添加了Manage Exposer的默认数据库值以及Page页面

This commit is contained in:
makotocc0107
2024-08-27 10:44:40 +08:00
parent fae4b62663
commit b1d638a2ed
4 changed files with 84 additions and 5 deletions

View File

@@ -0,0 +1,18 @@
<?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';
}
}