feat: add quirks path

This commit is contained in:
2024-03-05 09:30:00 +08:00
parent 7dabd46aa2
commit b996be0702
8 changed files with 1949 additions and 9 deletions

View File

@@ -457,11 +457,7 @@ pub mod tests {
let docker = testcontainers::clients::Cli::default();
let image = create_qbit_testcontainer();
let container = docker.run(image);
let mut exec = ExecCommand::default();
container.exec(exec);
let _container = docker.run(image);
test_qbittorrent_downloader_impl().await;
}

View File

@@ -1,4 +1,4 @@
use std::path::PathBuf;
use std::{borrow::Cow, collections::VecDeque, path::PathBuf};
use lazy_static::lazy_static;
pub use uni_path::{Path as VFSSubPath, PathBuf as VFSSubPathBuf};
@@ -77,8 +77,8 @@ impl<'a> VFSPath<'a> {
#[derive(Clone, Debug)]
pub struct VFSPathBuf {
pub root: String,
pub sub: VFSSubPathBuf,
root: String,
sub: VFSSubPathBuf,
}
impl VFSPathBuf {