15 lines
503 B
Rust
15 lines
503 B
Rust
pub const METEORO_HELP_TEXT: &'static str = "Usage:\tmeteoro [OPTIONS]
|
|
|
|
OPTIONS:
|
|
|
|
-a IPV4_ADDRESS Provide an IPv4 address to bind to
|
|
(example: -a 192.168.1.2:6969)
|
|
|
|
-A IPV6_ADDRESS Provide an IPv6 address to bind to
|
|
(example: -A [::1]:6970)
|
|
|
|
-h | --help Show this help text
|
|
-v | --version Print the program's build & version information
|
|
--debug Enable debug logging
|
|
--trace Enable trace logging (more verbose debug)";
|