pub use bson::doc;
pub use mongodb::{
bson::Regex,
options::{AggregateOptions, IndexOptions},
IndexModel,
};
#[cfg(feature = "uuid")]
pub use bson::uuid::Uuid;
#[cfg(feature = "timestamps")]
pub use bson::{serde_helpers::chrono_datetime_as_bson_datetime as TimestampSerializer, DateTime};
pub mod connection;
pub mod types;
mod model;
pub use model::Model;
#[cfg(test)]
mod tests;