/******************************************************************************
Author: Joaquín Béjar García
Email: jb@taunais.com
Date: 25/12/25
******************************************************************************/
//! Prelude module for convenient imports.
//!
//! This module re-exports the most commonly used items from the library,
//! allowing users to import everything they need with a single use statement:
//!
//! ```rust
//! use positive::prelude::*;
//! ```
//!
//! This includes:
//! - The `Positive` type and its associated macros
//! - Error types for handling failures
//! - The `Decimal` type from `rust_decimal`
//! - All predefined constants
pub use crate*;
pub use crate;
pub use crate::;
pub use Decimal;