summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2022-01-04 06:27:37 -0600
committerAlejandro Soto <alejandro@34project.org>2022-01-04 06:28:02 -0600
commit1955ec118a32d3fa174496abe5442c82c609273a (patch)
tree9a5a04711540738e5240393909a468966a782816 /src/lib.rs
parenta134847d49224acaf4089e7bad0850a4032c2606 (diff)
Remove client.rs
Diffstat (limited to '')
-rw-r--r--src/lib.rs10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/lib.rs b/src/lib.rs
index e42747d..891c022 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -11,20 +11,14 @@ compile_error!("Unsupported OS");
use std::time::{SystemTime, UNIX_EPOCH};
pub use nix;
-
pub use crate::fuse::*;
-pub mod client;
+pub use nix::errno::Errno;
+pub use util::{FuseError, FuseResult};
mod proto;
mod util;
-
mod fuse;
-#[doc(no_inline)]
-pub use nix::errno::Errno;
-
-pub use util::{FuseError, FuseResult};
-
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct Ttl {
seconds: u64,