mirror of
https://github.com/passepartoutvpn/wireguard-apple.git
synced 2025-01-13 12:09:05 +00:00
90acf2b220
A bit overdue, but better late than never. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
9 lines
230 B
Swift
9 lines
230 B
Swift
// SPDX-License-Identifier: MIT
|
|
// Copyright © 2018-2020 WireGuard LLC. All Rights Reserved.
|
|
|
|
protocol WireGuardAppError: Error {
|
|
typealias AlertText = (title: String, message: String)
|
|
|
|
var alertText: AlertText { get }
|
|
}
|