diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-01-04 06:54:01 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-01-04 06:54:01 -0600 |
| commit | 2236d258859018a93b14504295385ad4fb0b3d9b (patch) | |
| tree | cf8f65635ffc3cdea5c2755f20859676b855e790 /src/lib.rs | |
| parent | 70baa472b2bee69f205cc1aada304d597b858005 (diff) | |
Move error types to new module crate::error
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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; |
