Skip to main content

talon_cli/
exit_codes.rs

1//! Process exit code constants.
2
3/// Successful execution.
4pub const SUCCESS: u8 = 0;
5
6/// Generic runtime failure.
7pub const GENERIC_ERROR: u8 = 1;
8
9/// Invalid user input or configuration.
10pub const USAGE: u8 = 2;