summaryrefslogtreecommitdiff
path: root/examples/passthrough.rs
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2022-01-05 07:58:36 -0600
committerAlejandro Soto <alejandro@34project.org>2022-01-05 07:58:36 -0600
commit587cb05ec42417a05ed371d500b8734b10cf60f7 (patch)
treed043876ba64f4573453a743a609f4e485142332f /examples/passthrough.rs
parentfe2ec80b262e6457b896f23ec91e4fe9da4b8117 (diff)
Implement Link
Diffstat (limited to 'examples/passthrough.rs')
-rw-r--r--examples/passthrough.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/passthrough.rs b/examples/passthrough.rs
index 0e0f2c9..32f50ca 100644
--- a/examples/passthrough.rs
+++ b/examples/passthrough.rs
@@ -368,6 +368,7 @@ async fn main_loop(session: Start, mut fs: Passthrough) -> FuseResult<()> {
Mkdir(mkdir) => fs.mkdir(mkdir.op()?).await,
Unlink(unlink) => fs.unlink(unlink.op()?).await,
Rmdir(rmdir) => fs.rmdir(rmdir.op()?).await,
+ //TODO: Link
Open(open) => fs.open(open.op()?).await,
Read(read) => fs.read(read.op()?).await,
Write(write) => fs.write(write.op()?).await,