From 035560b88113bd7498189f171e3dcd0bc60ea737 Mon Sep 17 00:00:00 2001 From: Adrian Malacoda Date: Mon, 18 Feb 2019 03:05:29 -0600 Subject: [PATCH] expose path() --- scouter/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scouter/src/lib.rs b/scouter/src/lib.rs index 320ccde..c4ff95f 100644 --- a/scouter/src/lib.rs +++ b/scouter/src/lib.rs @@ -29,7 +29,7 @@ pub struct Project { } impl Project { - fn path(&self) -> &Path { + pub fn path(&self) -> &Path { &self.path } }