diff options
Diffstat (limited to 'common/object/src/lib.rs')
| -rw-r--r-- | common/object/src/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/object/src/lib.rs b/common/object/src/lib.rs index 59a758f..02b2293 100644 --- a/common/object/src/lib.rs +++ b/common/object/src/lib.rs @@ -7,7 +7,7 @@ mod buffer; pub mod inspect; -pub mod path; +mod path; mod registry; #[cfg(test)] mod tests; @@ -15,6 +15,7 @@ mod value; pub use buffer::*; pub use registry::*; pub use value::*; +pub use path::*; use std::marker::PhantomData; |