chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 12:22:33 +08:00
commit fc4fcbab58
1848 changed files with 472303 additions and 0 deletions
+11
View File
@@ -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
}
}