1
2
3
4
5
6
7
8
9
10
11
12
13
use clap::Args;

const ENV_INFO: &str = include_str!("./static/env_info.txt");

/// Outputs information about environment variables used by the Ockam CLI
#[derive(Clone, Debug, Args)]
pub struct EnvironmentCommand {}

impl EnvironmentCommand {
    pub fn run(self) {
        println!("{}", ENV_INFO);
    }
}