use clap::Args;
const ENV_INFO: &str = include_str!("./static/env_info.txt");
#[derive(Clone, Debug, Args)]
pub struct EnvironmentCommand {}
impl EnvironmentCommand {
pub fn run(self) -> miette::Result<()> {
println!("{}", ENV_INFO);
Ok(())
}
pub fn name(&self) -> String {
"show environment variables".to_string()
}
}