//! Boundary module for cloud configuration loading.
//!
//! This module contains the environment-accessing functions for loading
//! cloud configuration. It follows the boundary pattern:
//! - Pure parsing logic is in `cloud.rs`
//! - This module handles the impure `std::env::var` access
use crate;
/// Load cloud configuration from the process environment.
///
/// This is a boundary function that reads environment variables
/// and passes them to the pure `from_env_fn` parser.
/// Load git remote configuration from the process environment.
///
/// This is a boundary function that reads environment variables
/// and passes them to the pure `from_env_fn` parser.