feat: backend selector setting

This commit is contained in:
DeskClaw Bot
2026-04-21 17:44:01 +00:00
Unverified
parent c231c54778
commit 5e6d7f9709
4 changed files with 38 additions and 1 deletions

View File

@@ -35,6 +35,7 @@ export interface AppSettings {
gatewayAutoStart: boolean;
gatewayPort: number;
gatewayToken: string;
gatewayBackend: 'openclaw' | 'hermes';
proxyEnabled: boolean;
proxyServer: string;
proxyHttpServer: string;
@@ -86,6 +87,7 @@ function createDefaultSettings(): AppSettings {
gatewayAutoStart: true,
gatewayPort: 18789,
gatewayToken: generateToken(),
gatewayBackend: 'openclaw',
proxyEnabled: false,
proxyServer: '',
proxyHttpServer: '',