re_datafusion/lib.rs
//! The Rerun public data APIs. Access `DataFusion` `TableProviders`.
mod dataframe_query_provider;
mod datafusion_connector;
mod grpc_streaming_provider;
mod partition_table;
mod search_provider;
mod table_entry_provider;
mod wasm_compat;
pub use dataframe_query_provider::DataframeQueryTableProvider;
pub use datafusion_connector::DataFusionConnector;
pub use partition_table::PartitionTableProvider;
pub use search_provider::SearchResultsTableProvider;
pub use table_entry_provider::TableEntryTableProvider;