diff options
author | Florian Klink <flokli@flokli.de> | 2024-11-09T14·20+0000 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2024-11-11T18·46+0000 |
commit | a9f453f6da90c39c67df209d298062b751b93f73 (patch) | |
tree | 8995436a244569182730184f4b661a4c7d1475a6 /tvix/store/src/pathinfoservice/from_addr.rs | |
parent | e71a857ec892f14ee7ce318f6753ba4af8d5ca4e (diff) |
docs(tvix/[ca]store): improve docstrings, remove wildcard imports r/8901
Extend the docstrings of `add_default_services`, and add one for `addrs_to_configs` as well as the module-wide one at `tvix_store::composition`. Change-Id: Ie9b449988eb210cd65b19b174094bbe0c4af2fd6 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12748 Tested-by: BuildkiteCI Reviewed-by: yuka <yuka@yuka.dev>
Diffstat (limited to 'tvix/store/src/pathinfoservice/from_addr.rs')
-rw-r--r-- | tvix/store/src/pathinfoservice/from_addr.rs | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/tvix/store/src/pathinfoservice/from_addr.rs b/tvix/store/src/pathinfoservice/from_addr.rs index 2f5c776293cb..0e8cc064dc9e 100644 --- a/tvix/store/src/pathinfoservice/from_addr.rs +++ b/tvix/store/src/pathinfoservice/from_addr.rs @@ -1,9 +1,10 @@ use super::PathInfoService; -use crate::composition::{ - with_registry, CompositionContext, DeserializeWithRegistry, ServiceBuilder, REG, -}; +use crate::composition::REG; use std::sync::Arc; +use tvix_castore::composition::{ + with_registry, CompositionContext, DeserializeWithRegistry, ServiceBuilder, +}; use tvix_castore::Error; use url::Url; @@ -56,11 +57,12 @@ pub async fn from_addr( #[cfg(test)] mod tests { use super::from_addr; - use crate::composition::{Composition, DeserializeWithRegistry, ServiceBuilder, REG}; + use crate::composition::REG; use rstest::rstest; use std::sync::LazyLock; use tempfile::TempDir; use tvix_castore::blobservice::{BlobService, MemoryBlobServiceConfig}; + use tvix_castore::composition::{Composition, DeserializeWithRegistry, ServiceBuilder}; use tvix_castore::directoryservice::{DirectoryService, MemoryDirectoryServiceConfig}; static TMPDIR_REDB_1: LazyLock<TempDir> = LazyLock::new(|| TempDir::new().unwrap()); |