vdev/commands/config/
find.rs

1use anyhow::Result;
2use clap::Args;
3
4use crate::config;
5
6/// Locate the config file
7#[derive(Args, Debug)]
8#[command()]
9pub struct Cli {}
10
11impl Cli {
12    pub fn exec(self) -> Result<()> {
13        println!("{}", config::path()?.display());
14
15        Ok(())
16    }
17}