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