fix: fs is undefined

This commit is contained in:
jeasonnow
2023-07-28 14:18:57 +08:00
parent b342d6c2af
commit bb5d964586

View File

@@ -1,5 +1,5 @@
use crate::util::{check_file_or_append, get_download_message, show_toast, MessageType};
use std::fs::File;
use std::fs::{self, File};
use std::io::Write;
use tauri::api::http::{ClientBuilder, HttpRequestBuilder, ResponseType};
use tauri::{api, command, AppHandle, Manager, Window};