chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
enum ExitCode: Int32 {
|
||||
case success = 0
|
||||
case failure = 1
|
||||
case binaryNotFound = 2
|
||||
case parseError = 3
|
||||
case timeout = 4
|
||||
|
||||
init(_ rawValue: Int) {
|
||||
self = ExitCode(rawValue: Int32(rawValue)) ?? .failure
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user