memscope_rs/facade/mod.rs
1//! Facade API - Unified user interface
2//!
3//! This module provides the MemScope facade which unifies all engines
4//! into a simple, easy-to-use interface.
5
6pub mod compat;
7pub mod implementation;
8pub mod macros;
9
10pub use compat::{
11 clear_all, export_json, get_global_memscope, get_memory_summary, get_top_allocations,
12 get_variable_info, register_variable,
13};
14pub use implementation::MemScope;