diff options
Diffstat (limited to 'tvix/castore/src/import/fs.rs')
-rw-r--r-- | tvix/castore/src/import/fs.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tvix/castore/src/import/fs.rs b/tvix/castore/src/import/fs.rs index 6709d4a127e9..03a52f2ba073 100644 --- a/tvix/castore/src/import/fs.rs +++ b/tvix/castore/src/import/fs.rs @@ -1,3 +1,5 @@ +//! Import from a real filesystem. + use futures::stream::BoxStream; use futures::StreamExt; use std::os::unix::fs::MetadataExt; @@ -16,8 +18,6 @@ use super::upload_blob_at_path; use super::Error; use super::IngestionEntry; -///! Imports that deal with a real filesystem. - /// Ingests the contents at a given path into the tvix store, interacting with a [BlobService] and /// [DirectoryService]. It returns the root node or an error. /// |