use env;
/// Retrieves the root path from the `ROOT_PATH` environment variable.
///
/// - If `ROOT_PATH` is set, its value is returned as a `String`.
/// - If `ROOT_PATH` is not set or retrieval fails, it defaults to the current working directory.
/// - If retrieving the current directory also fails, it defaults to `"./"`.
///
/// # Returns
///
/// - `String`: The root path as a `String`.
///