Add pub use statement for DataFrame, DataFrameColumn, and TypedFrame in mod.rs

This commit is contained in:
Palash Tyagi 2025-06-22 21:15:12 +01:00
parent 57ed06f79b
commit 2607d9c3b0

View File

@ -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};