//! Prelude module for convenient imports.
//!
//! This module re-exports the most commonly used types, traits, and functions
//! from the market making library. Users can import everything they need with:
//!
//! ```rust
//! use market_maker_rs::prelude::*;
//! ```
// Re-export Decimal and helper functions
pub use crate;
pub use crate::;
// Re-export types module
pub use crate;
pub use crate;
// Re-export strategy types
pub use crateStrategyConfig;
pub use crateQuote;
// Re-export position types
pub use crateInventoryPosition;
pub use cratePnL;
// Re-export market state types
pub use crateMarketState;