useclap::Args;constENV_INFO:&str=include_str!("./static/env_info.txt");/// Outputs information about environment variables used by the Ockam CLI
#[derive(Clone, Debug, Args)]pubstructEnvironmentCommand{}implEnvironmentCommand{pubfnrun(self){println!("{}",ENV_INFO);}}