mirror of
https://github.com/passepartoutvpn/wireguard-apple.git
synced 2025-02-08 08:52:02 +00:00
8 lines
221 B
Swift
8 lines
221 B
Swift
// SPDX-License-Identifier: MIT
|
|
// Copyright © 2018 WireGuard LLC. All Rights Reserved.
|
|
|
|
protocol WireGuardAppError: Error {
|
|
typealias AlertText = (title: String, message: String)
|
|
func alertText() -> AlertText
|
|
}
|