aristo-cli 0.7.0

Aristo CLI binary (the `aristo` command).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! `aristo canon request-verify <canon_id> [--notes <text>]` — record
//! a demand signal for verification backing on a canon entry.
//!
//! Coming soon. Demand-signal submission is being reworked to resolve
//! against the org's data plane; until that lands the command reports the deferral
//! instead of calling a canon endpoint.

use crate::{CliError, CliResult};

pub(crate) fn run(_canon_id: &str, _notes: Option<String>) -> CliResult<()> {
    Err(CliError::NotImplemented {
        what: "aristo canon request-verify",
        hint: "coming soon (reworking for per-instance data-plane routing)",
    })
}