Skip to content

Commit

Permalink
fix use
Browse files Browse the repository at this point in the history
  • Loading branch information
adileo committed Feb 25, 2023
1 parent ce8c116 commit a440815
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src-tauri/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ mod window_style;

use regex::Regex;
use serde::Serialize;

use std::process::Command;
use std::sync::Mutex;
use std::{path::PathBuf, thread};
use sysinfo::{DiskExt, System, SystemExt};
use tauri::api::process::CommandChild;
use tauri::Manager;

#[cfg(target_os = "macos")]
use window_vibrancy::NSVisualEffectMaterial;

#[cfg(target_os = "linux")]
use {std::fs::metadata, std::PathBuf};
use {std::fs::metadata, std::path::PathBuf};

#[derive(Serialize)]
#[serde(rename_all = "camelCase")]
Expand Down

0 comments on commit a440815

Please sign in to comment.