lab_ops/consts.rs
1/// The lab-ops binary installed on the host system.
2pub const BIN: &str = "/usr/local/bin/lab-ops";
3
4/// The lab-ops CLI command name (for subprocess invocations).
5pub const CMD: &str = "lab-ops";
6
7/// Subcommand name for the DNS zone-to-Ansible converter.
8pub const CMD_CF2ANSIBLE: &str = "cf2ansible";
9/// Subcommand name for the DNS zone-to-Terraform converter.
10pub const CMD_CF2TERRA: &str = "cf2terra";
11/// Subcommand name for the Docker network viewer.
12pub const CMD_DOCKERNET: &str = "dockernet";
13/// Subcommand name for the NAT mapping tool.
14pub const CMD_NATMAP: &str = "natmap";
15/// Subcommand name for the service discovery daemon.
16pub const CMD_AUTO_DISCOVER: &str = "auto-discover";
17/// Subcommand name for shell completion generation.
18pub const CMD_COMPLETIONS: &str = "completions";