pub mod dataframe;
pub mod engine;
pub mod execution;
pub mod html;
pub mod persistence;
pub mod runtime; pub mod server;
#[cfg(feature = "notebook")]
pub mod testing;
pub mod types; pub mod wasm;
pub use dataframe::{ColumnType, DataFrame};
pub use engine::NotebookEngine;
pub use execution::CellExecutionResult;
pub use html::{html_escape, HtmlFormatter};
pub use persistence::{Checkpoint, TransactionResult};
pub use runtime::NotebookRuntime; pub use server::start_server;
pub use types::{Cell, CellType, Notebook, NotebookMetadata}; pub use wasm::{NotebookPerformance, NotebookWasm};
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_module_exports() {
let _ = start_server;
}
#[test]
fn test_feature_gated_testing() {
#[cfg(feature = "notebook")]
{
}
}
#[test]
fn test_server_module_exists() {
}
}