ai_lib/provider/strategies/
mod.rs1mod builder;
2mod failover;
3mod round_robin;
4
5pub use builder::RoutingStrategyBuilder;
6pub use failover::FailoverProvider;
7pub use round_robin::RoundRobinProvider;
8
9#[cfg(feature = "routing_mvp")]
10pub mod health;
11#[cfg(feature = "routing_mvp")]
12pub use health::health_check;