openauth-core 0.0.4

Core types and primitives for OpenAuth.
Documentation
1
2
3
4
5
6
7
8
//! Environment helpers for OpenAuth core.

pub mod logger;

/// Returns true when OpenAuth is running in a production environment.
pub fn is_production() -> bool {
    std::env::var("RUST_ENV").is_ok_and(|value| value == "production")
}