vfox 2025.9.21

Interface to vfox plugins
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use vfox::{Vfox, VfoxResult};

#[derive(clap::Args)]
pub struct EnvKeys {
    pub sdk: String,
    pub version: String,
}

impl EnvKeys {
    pub async fn run(&self) -> VfoxResult<()> {
        let vfox = Vfox::new();
        let env_keys = vfox.env_keys(&self.sdk, &self.version).await?;
        for env_key in env_keys {
            println!("{}={}", env_key.key, env_key.value);
        }
        Ok(())
    }
}