| 9 | import { secretStorageBackendForPolicy, shouldUseChromiumMockKeychainForPolicy } from './secret-storage-policy.js' |
| 10 | |
| 11 | interface GatewayState { |
| 12 | url: string |
| 13 | port: number |
| 14 | owned: boolean |
| 15 | status: 'starting' | 'ready' | 'stopped' | 'error' |
| 16 | logPath: string |
| 17 | error?: string |
| 18 | } |
| 19 | |
| 20 | type SecretEncryption = 'safeStorage' | 'plain' |
| 21 | type RouterMode = 'recommended' | 'openrouter-mix' | 'disabled' |
nothing calls this directly
no outgoing calls
no test coverage detected