From 3c2ecef76e498e95d55ee4ac824f88b11af98b86 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Fri, 27 Dec 2024 13:29:58 -0500 Subject: [PATCH] actually, let's move all the fs stuff to a separate module --- src/lib.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 4b919d9..3951d47 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -12,8 +12,7 @@ use sys_traits::SystemRandom; use thiserror::Error; use url::Url; -mod fs; -pub use fs::*; +pub mod fs; /// Gets the parent of this url. pub fn url_parent(url: &Url) -> Url {