From 2407800acabafc16b7768a776adaf60852299491 Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Wed, 9 Aug 2023 16:31:32 -0500 Subject: [PATCH] Export roblox module in lib --- src/lib.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 1d30335..b798775 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,7 @@ mod lune; -mod roblox; + +#[cfg(feature = "roblox")] +pub mod roblox; #[cfg(test)] mod tests;