From 263413b4570a090222d3ed7927fe7b05a2b86147 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Wed, 27 Jan 2021 16:56:20 +0100 Subject: Make function pub, so we can use it elsewhere Signed-off-by: Matthias Beyer --- src/filestore/path.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/filestore') diff --git a/src/filestore/path.rs b/src/filestore/path.rs index a03ab83..60d8e56 100644 --- a/src/filestore/path.rs +++ b/src/filestore/path.rs @@ -139,7 +139,7 @@ impl AsRef for ArtifactPath { pub struct FullArtifactPath<'a>(&'a StoreRoot, &'a ArtifactPath); impl<'a> FullArtifactPath<'a> { - fn joined(&self) -> PathBuf { + pub fn joined(&self) -> PathBuf { self.0 .0.join(&self.1 .0) } -- cgit v1.2.3