Skip to main content

noxy_sdk/
config.rs

1/// Configuration for the Noxy Decision Layer SDK client.
2#[derive(Clone, Debug)]
3pub struct NoxyConfig {
4    /// Noxy relay gRPC endpoint (e.g. `https://relay.noxy.network:443`).
5    pub endpoint: String,
6    /// Bearer token for relay authentication.
7    pub auth_token: String,
8    /// Time-to-live for routed decisions in seconds.
9    pub decision_ttl_seconds: u32,
10}