relay_config/
lib.rs

1//! Configuration for the Relay CLI and server.
2#![warn(missing_docs)]
3#![doc(
4    html_logo_url = "https://raw.githubusercontent.com/getsentry/relay/master/artwork/relay-icon.png",
5    html_favicon_url = "https://raw.githubusercontent.com/getsentry/relay/master/artwork/relay-icon.png"
6)]
7#![allow(clippy::derive_partial_eq_without_eq)]
8
9pub mod aggregator;
10mod byte_size;
11mod config;
12mod redis;
13mod upstream;
14
15pub use crate::aggregator::{AggregatorServiceConfig, ScopedAggregatorConfig};
16pub use crate::byte_size::*;
17pub use crate::config::*;
18pub use crate::redis::*;
19pub use crate::upstream::*;