rolter-core 0.0.1

shared config model, domain types, errors and telemetry for rolter
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Shared building blocks for the rolter gateway and control plane.
//!
//! This crate holds the configuration model, domain error type and telemetry
//! bootstrap that every other rolter crate depends on.

pub mod config;
pub mod error;
pub mod telemetry;

pub use config::{
    BalancingStrategy, GatewayConfig, LoggingConfig, ModelRoute, ProviderConfig, ProviderKind,
    ServerConfig, Target, VirtualKeyConfig,
};
pub use error::{Error, Result};