mirror of
https://github.com/amnezia-vpn/amneziawg-apple.git
synced 2026-05-17 08:26:45 +03:00
9 lines
230 B
Swift
9 lines
230 B
Swift
// SPDX-License-Identifier: MIT
|
|
// Copyright © 2018-2023 WireGuard LLC. All Rights Reserved.
|
|
|
|
protocol WireGuardAppError: Error {
|
|
typealias AlertText = (title: String, message: String)
|
|
|
|
var alertText: AlertText { get }
|
|
}
|