host-identity-cli 1.1.1

Command-line interface for host-identity: print a stable host UUID across platforms, clouds, and Kubernetes
Documentation
1
2
3
4
5
6
7
8
9
//! `host-identity` binary entry point. All logic lives in the
//! [`host_identity_cli`] library so tooling (the workspace `xtask`
//! that generates man pages) can reuse the same `clap` definition.

use std::process::ExitCode;

fn main() -> ExitCode {
    host_identity_cli::run()
}