+
+
diff --git a/frontend/src/model.ts b/frontend/src/model.ts
new file mode 100644
index 0000000..6f7c9fc
--- /dev/null
+++ b/frontend/src/model.ts
@@ -0,0 +1,9 @@
+export enum configModel {
+ Url = "url",
+ Token = "token",
+ ThreadCount = "thread-count",
+ HandleFileCount = "handle-file-count",
+ IsRunOnStart = "is-run-on-start",
+ CheckDir = "check-dir",
+ ClearFilesNoPrompt = "clear-files-no-prompt",
+}
\ No newline at end of file
diff --git a/frontend/wailsjs/go/models.ts b/frontend/wailsjs/go/models.ts
index db2a498..b1ba753 100644
--- a/frontend/wailsjs/go/models.ts
+++ b/frontend/wailsjs/go/models.ts
@@ -7,6 +7,7 @@ export namespace config {
handle_file_count: number;
is_run_on_start: boolean;
check_dir: string;
+ clear_files_no_prompt: boolean;
static createFrom(source: any = {}) {
return new Config(source);
@@ -20,6 +21,7 @@ export namespace config {
this.handle_file_count = source["handle_file_count"];
this.is_run_on_start = source["is_run_on_start"];
this.check_dir = source["check_dir"];
+ this.clear_files_no_prompt = source["clear_files_no_prompt"];
}
}