Author:
Hash:
Timestamp:
+2 -2 +/-2 browse
Kevin Schoon [me@kevinschoon.com]
f03e3f23219bfef942a3cc93a5e89d15dad3c3b9
Fri, 21 Nov 2025 15:56:46 +0000 (2 weeks ago)
| 1 | diff --git a/crates/cmd/src/quipu.rs b/crates/cmd/src/quipu.rs |
| 2 | index 891b352..4f54e6c 100644 |
| 3 | --- a/crates/cmd/src/quipu.rs |
| 4 | +++ b/crates/cmd/src/quipu.rs |
| 5 | @@ -43,5 +43,5 @@ pub enum Subcommand { |
| 6 | /// Verify the remote server is functional |
| 7 | Ping, |
| 8 | /// Perform a webfinger query against the Ayllu instance |
| 9 | - Finger { resource: String }, |
| 10 | + Query { resource: String }, |
| 11 | } |
| 12 | diff --git a/quipu/src/main.rs b/quipu/src/main.rs |
| 13 | index 1b293e2..2a9e816 100644 |
| 14 | --- a/quipu/src/main.rs |
| 15 | +++ b/quipu/src/main.rs |
| 16 | @@ -56,7 +56,7 @@ async fn main() -> Result<(), error::QuipuError> { |
| 17 | // print_completions(shell, &mut cmd); |
| 18 | // Ok(()) |
| 19 | // } |
| 20 | - Subcommand::Finger { resource } => { |
| 21 | + Subcommand::Query { resource } => { |
| 22 | let instance = get_instance(&cfg, cli.url, cli.instance)?; |
| 23 | let client = client::Quipu::new(instance.url); |
| 24 | client.finger(&resource).await?; |