10 lines
201 B
Rust
Raw Normal View History

2026-04-09 12:38:43 +02:00
//! Relational data model scaffolding for future SQL and planner work.
mod row;
mod schema;
mod value;
pub use row::{ResultSet, Row};
pub use schema::{DataType, Field, Schema};
pub use value::Value;