mongodb_ro/
lib.rs

1//! MongoDB Model ORM
2//!
3//! It includes CRUD operations, query building, and index management with support for:
4//! - Field renaming
5//! - Hidden/visible fields
6//! - Timestamps
7//! - Transactions
8//! - Aggregation
9//!
10
11pub mod model;
12mod column;
13pub mod event;
14
15pub use mongodb_ro_derive::*;
16