mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-06-14 19:11:04 +00:00
c111bcbc4d
Signed-off-by: xermicus <cyrill@parity.io>
8 lines
213 B
Rust
8 lines
213 B
Rust
//! The revive 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;
|