mirror of
https://github.com/passepartoutvpn/wireguard-apple.git
synced 2025-02-11 10:22:03 +00:00
9 lines
230 B
Swift
9 lines
230 B
Swift
// SPDX-License-Identifier: MIT
|
|
// Copyright © 2018-2019 WireGuard LLC. All Rights Reserved.
|
|
|
|
protocol WireGuardAppError: Error {
|
|
typealias AlertText = (title: String, message: String)
|
|
|
|
var alertText: AlertText { get }
|
|
}
|