From 2236d258859018a93b14504295385ad4fb0b3d9b Mon Sep 17 00:00:00 2001 From: Alejandro Soto Date: Tue, 4 Jan 2022 06:54:01 -0600 Subject: Move error types to new module crate::error --- src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index f811ba1..4830308 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -13,10 +13,10 @@ use std::{ time::{SystemTime, UNIX_EPOCH}, }; -pub use nix; -pub use nix::errno::Errno; -pub use util::{FuseError, FuseResult}; +pub use self::error::{FuseError, FuseResult}; +pub use nix::{self, errno::Errno}; +pub mod error; pub mod io; pub mod mount; pub mod ops; -- cgit v1.2.3