1 2 3 4 5 6 7 8 9 10
use anyhow::Result; use std::path::Path; use crate::state::load_identity; pub fn run(home: &Path) -> Result<()> { let ident = load_identity(home)?; println!("{}", ident.public_b64); Ok(()) }