dugout 0.1.4

A local secrets manager for development teams, written in Rust
Documentation
//! Whoami command - print your public key.

use crate::cli::output;
use crate::core::domain::Identity;
use crate::error::Result;

/// Print your public key.
pub fn execute() -> Result<()> {
    if !Identity::has_global()? {
        output::error("no identity found");
        output::hint("run: dugout setup");
        return Err(
            crate::error::StoreError::NoPrivateKey("~/.dugout/identity".to_string()).into(),
        );
    }

    let pubkey = Identity::load_global_pubkey()?;
    output::data(&pubkey);

    Ok(())
}