use env as std_env;
const APP_ENV_KEY: &str = "APP_ENV";
const DEFAULT_ENV: &str = "development";
/// Returns the current application environment.
///
/// Reads the `APP_ENV` environment variable. Falls back to `"development"` when
/// the variable is not set.
/// Returns `true` when `APP_ENV` is `"development"` (or unset).
/// Returns `true` when `APP_ENV` is `"production"`.
/// Returns `true` when `APP_ENV` is `"test"`.