feat(frontend): 增加两个token的输入框
构建上传工具 / build (push) Failing after 2m46s

This commit is contained in:
2026-07-26 18:09:59 +08:00
parent e15debc962
commit b0ee886b75
3 changed files with 28 additions and 10 deletions
+4
View File
@@ -3,6 +3,8 @@ export namespace config {
export class Config {
url: string;
token: string;
has_video_token: string;
no_video_token: string;
thread_count: number;
handle_file_count: number;
is_run_on_start: boolean;
@@ -17,6 +19,8 @@ export namespace config {
if ('string' === typeof source) source = JSON.parse(source);
this.url = source["url"];
this.token = source["token"];
this.has_video_token = source["has_video_token"];
this.no_video_token = source["no_video_token"];
this.thread_count = source["thread_count"];
this.handle_file_count = source["handle_file_count"];
this.is_run_on_start = source["is_run_on_start"];