//! # Sentinel ORM
//!
//! Compile-time guarded ORM for PostgreSQL.
//!
//! ```toml
//! [dependencies]
//! sntl = "0.1"
//! ```
//!
//! ```rust
//! use sntl::prelude::*;
//! ```
/// Core — Model trait, QueryBuilder, types, and connection abstraction.
/// Migration tools — schema diff and migration generation.
/// Prelude — common imports for quick setup.
/// PostgreSQL wire protocol driver.
pub use driver;
/// Derive macros — `#[derive(Model)]`, `#[derive(Partial)]`.
pub use Model;
pub use Partial;
pub use ;