harmont-cli 0.0.2

Command-line client for the Harmont CI platform.
1
2
3
4
5
6
7
8
9
10
11
12
use anyhow::Result;

#[allow(clippy::unused_async)]
/// Print version information to stdout.
///
/// # Errors
///
/// Returns an error on I/O failure.
pub async fn run() -> Result<()> {
    tracing::info!("hm {}", env!("CARGO_PKG_VERSION"));
    Ok(())
}