mockforge-core 0.3.126

Shared logic for MockForge - routing, validation, latency, proxy
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! API Change Forecasting
//!
//! This module provides functionality to predict future API contract changes
//! based on historical drift patterns. It analyzes past incidents to identify
//! patterns and forecast when changes are likely to occur.

pub mod forecaster;
pub mod pattern_analyzer;
pub mod statistical_model;
pub mod types;

pub use forecaster::Forecaster;
pub use pattern_analyzer::PatternAnalyzer;
pub use statistical_model::StatisticalModel;
pub use types::*;