aboutsummaryrefslogtreecommitdiffstats
path: root/zone_core/src
diff options
context:
space:
mode:
Diffstat (limited to 'zone_core/src')
-rw-r--r--zone_core/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/zone_core/src/lib.rs b/zone_core/src/lib.rs
index 6801ee8..5d4d426 100644
--- a/zone_core/src/lib.rs
+++ b/zone_core/src/lib.rs
@@ -9,7 +9,7 @@ use serde::{Deserialize, Serialize};
use std::path::PathBuf;
use strum_macros::{Display, EnumString};
use tabled::Tabled;
-use zone_zfs::file_system::FileSystem;
+use zone_zfs::FileSystem;
pub static DEFAULT_ENDPOINT: &str = "127.0.0.1:8000";
@@ -76,7 +76,7 @@ impl<'r> Responder<'r, 'static> for Container {
}
impl TryFrom<FileSystem> for Container {
- type Error = zone_zfs::error::Error;
+ type Error = zone_zfs::Error;
fn try_from(file_system: FileSystem) -> Result<Self, Self::Error> {
let path_buf = PathBuf::from(&file_system)