// SPDX-FileCopyrightText: 2025-2026 RAprogramm <andrey.rozanov.vl@gmail.com>
// SPDX-License-Identifier: MIT
//! MongoDB implementation for repository code generation.
//!
//! # Status
//!
//! Not yet implemented. Use `sql = "trait"` and implement manually.
//!
//! # Planned Features
//!
//! - Document-based operations (not SQL)
//! - BSON type mappings
//! - Aggregation pipeline support
//! - Index hint generation
use TokenStream;
use quote;
use crateEntityDef;
/// Generate MongoDB repository implementation.
///
/// Currently generates a compile error directing users to implement manually.