1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Configuration for the Relay CLI and server.
#![warn(missing_docs)]
#![doc(
    html_logo_url = "https://raw.githubusercontent.com/getsentry/relay/master/artwork/relay-icon.png",
    html_favicon_url = "https://raw.githubusercontent.com/getsentry/relay/master/artwork/relay-icon.png"
)]
#![allow(clippy::derive_partial_eq_without_eq)]

mod byte_size;
mod config;
mod upstream;

pub use crate::byte_size::*;
pub use crate::config::*;
pub use crate::upstream::*;