summaryrefslogtreecommitdiff
path: root/src/ops/mod.rs
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2022-01-04 06:49:48 -0600
committerAlejandro Soto <alejandro@34project.org>2022-01-04 06:49:52 -0600
commit70baa472b2bee69f205cc1aada304d597b858005 (patch)
tree7a0b1a0381b68fe0e091b87d00634ff13568bf6d /src/ops/mod.rs
parent1955ec118a32d3fa174496abe5442c82c609273a (diff)
Move crate::fuse::* to the top-level
Diffstat (limited to '')
-rw-r--r--src/ops/mod.rs (renamed from src/fuse/ops/mod.rs)3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/fuse/ops/mod.rs b/src/ops/mod.rs
index 39a4ef0..13d146d 100644
--- a/src/fuse/ops/mod.rs
+++ b/src/ops/mod.rs
@@ -3,8 +3,7 @@ use std::{
os::unix::ffi::OsStrExt,
};
-use crate::util::OutputChain;
-use super::{private_trait::Sealed, Done, Operation, Reply, Request};
+use crate::{private_trait::Sealed, util::OutputChain, Done, Operation, Reply, Request};
use bytemuck::{bytes_of, Pod};
mod dir;