radicle_cli/commands/
path.rs

1mod args;
2
3use radicle::profile;
4
5use crate::terminal as term;
6
7pub use args::Args;
8pub(crate) use args::ABOUT;
9
10pub fn run(_args: Args, _ctx: impl term::Context) -> anyhow::Result<()> {
11    let home = profile::home()?;
12
13    println!("{}", home.path().display());
14
15    Ok(())
16}