Move all source files to Sources/ and rename WireGuardKit targets

Signed-off-by: Andrej Mihajlov <and@mullvad.net>
This commit is contained in:
Andrej Mihajlov
2020-12-02 12:27:39 +01:00
parent 9c38a1b897
commit ec57408570
209 changed files with 54 additions and 58 deletions
@@ -0,0 +1,28 @@
// SPDX-License-Identifier: MIT
// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved.
enum WireGuardResult<T> {
case success(_ value: T)
case failure(_ error: WireGuardAppError)
var value: T? {
switch self {
case .success(let value): return value
case .failure: return nil
}
}
var error: WireGuardAppError? {
switch self {
case .success: return nil
case .failure(let error): return error
}
}
var isSuccess: Bool {
switch self {
case .success: return true
case .failure: return false
}
}
}