mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-04-22 09:08:00 +00:00
c52a8d0f20
Signed-off-by: xermicus <cyrill@parity.io>
10 lines
216 B
Rust
10 lines
216 B
Rust
//!
|
|
//! The exit code constants.
|
|
//!
|
|
|
|
/// The common application success exit code.
|
|
pub const EXIT_CODE_SUCCESS: i32 = 0;
|
|
|
|
/// The common application failure exit code.
|
|
pub const EXIT_CODE_FAILURE: i32 = 1;
|