kiteconnect_async_wasm/models/mutual_funds/
mod.rs

1/*!
2 * Mutual Funds module for KiteConnect API v1.0.0
3 *
4 * This module contains all mutual fund-related data structures:
5 * - MF instruments and fund information
6 * - MF orders and SIP management
7 * - MF holdings and portfolio tracking
8 * - Fund performance and NAV data
9 */
10
11pub mod holdings;
12pub mod instruments;
13pub mod orders;
14pub mod sips;
15
16// Re-export all public types
17pub use holdings::*;
18pub use instruments::*;
19pub use orders::*;
20pub use sips::*;