snm-brightdata-client 0.4.0

Bright Data Wrapper Client Highly compacted Data implemented in Rust with Actix Web
Documentation
// snm-brightdata-client/src/metrics/mod.rs - Remove problematic imports
// Keep ONLY your existing working modules

pub mod brightdata_logger;
pub mod handler;
pub mod logger_integration;
// Remove these problematic lines:
// pub mod enhanced_tracker;        // DELETE this line
// pub mod integration_layer;       // DELETE this line

// Re-export existing functionality (unchanged) - these should work
pub use brightdata_logger::{
    BrightDataMetricsLogger, 
    BrightDataService, 
    DataFormat, 
    BrightDataCall, 
    ServiceMetrics,
    BRIGHTDATA_METRICS
};

pub use handler::{
    get_total_calls,
    get_service_calls, 
    get_service_metrics,
    get_call_sequence,
    get_configuration_analysis,
    generate_text_report,
    get_metrics_summary,
    export_all_metrics,
};

pub use logger_integration::EnhancedLogger;

// Remove all the problematic enhanced metrics exports - DELETE these lines:
// pub use enhanced_tracker::*;
// pub use integration_layer::*;