impyard 0.1.0

Rent the intelligence, own the governance — a control plane for imps: software colleagues whose every action passes through a gateway you control (default-deny egress, injected credentials, budgets, approval gates, audit).
1
2
3
4
5
6
7
8
9
10
//! Print the location of an imp's Git-backed world knowledge repository.
//! Everything after discovery uses the normal Git CLI.

use crate::util::BErr;

pub fn run(imp: &str) -> Result<(), BErr> {
    crate::imp::require_imp(imp)?;
    println!("{}", crate::imp::knowledge::repo_path(imp)?.display());
    Ok(())
}