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