Skip to main content

rolter_core/
lib.rs

1//! Shared building blocks for the rolter gateway and control plane.
2//!
3//! This crate holds the configuration model, domain error type and telemetry
4//! bootstrap that every other rolter crate depends on.
5
6pub mod config;
7pub mod error;
8pub mod telemetry;
9
10pub use config::{
11    BalancingStrategy, GatewayConfig, LoggingConfig, ModelRoute, ProviderConfig, ProviderKind,
12    ServerConfig, Target, VirtualKeyConfig,
13};
14pub use error::{Error, Result};