You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
175 B
Rust
9 lines
175 B
Rust
2 years ago
|
pub enum AppExitCode {
|
||
|
RunAsRoot = 1,
|
||
|
BuildInWorkspace = 2,
|
||
|
PkgNotFound = 3,
|
||
|
InvalidMode = 4,
|
||
|
DirNotEmpty = 5,
|
||
|
DirNotGit = 6,
|
||
|
ConfigNotFound = 7,
|
||
|
}
|