diff options
| author | 2026-01-15 16:56:58 +0800 | |
|---|---|---|
| committer | 2026-01-15 17:36:39 +0800 | |
| commit | fc6a787d84de70f8fc7ede782bc7c677a66c136e (patch) | |
| tree | 44a0feb01eeac8050ae0f78e7f6f46729c95bd90 /ui | |
| parent | 0477829f3f3e069bb746e711b0acad3494a484e2 (diff) | |
| download | DropOut-fc6a787d84de70f8fc7ede782bc7c677a66c136e.tar.gz DropOut-fc6a787d84de70f8fc7ede782bc7c677a66c136e.zip | |
feat: Add log upload service options to LauncherConfig for improved logging flexibility
Diffstat (limited to 'ui')
| -rw-r--r-- | ui/src/types/index.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ui/src/types/index.ts b/ui/src/types/index.ts index 163dc92..09a7d5e 100644 --- a/ui/src/types/index.ts +++ b/ui/src/types/index.ts @@ -35,6 +35,8 @@ export interface LauncherConfig { enable_visual_effects: boolean; active_effect: string; theme: string; + log_upload_service: "paste.rs" | "pastebin.com"; + pastebin_api_key?: string; } export interface JavaInstallation { |