From 2607d9c3b07bed9e15ec01235138c10595ef79ef Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Sun, 22 Jun 2025 21:15:12 +0100 Subject: [PATCH] Add pub use statement for DataFrame, DataFrameColumn, and TypedFrame in mod.rs --- src/dataframe/mod.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/dataframe/mod.rs b/src/dataframe/mod.rs index 8fb4cb2..3dd102e 100644 --- a/src/dataframe/mod.rs +++ b/src/dataframe/mod.rs @@ -1,2 +1,4 @@ //! This module provides the DataFrame structure for handling tabular data with mixed types. pub mod df; + +pub use df::{DataFrame, DataFrameColumn, TypedFrame};