diff --git a/src/csv/mod.rs b/src/csv/mod.rs new file mode 100644 index 0000000..aab2519 --- /dev/null +++ b/src/csv/mod.rs @@ -0,0 +1,3 @@ +pub mod csv_core; + +pub use csv_core::CsvReader; diff --git a/src/lib.rs b/src/lib.rs index 871819f..4f55034 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -14,3 +14,6 @@ pub mod compute; /// Documentation for the [`crate::random`] module. pub mod random; + +/// Documentation for the [`crate::csv`] module. +pub mod csv;