2018-12-06 10:43:48 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
// Copyright © 2018 WireGuard LLC. All Rights Reserved.
|
|
|
|
|
|
|
|
protocol WireGuardAppError: Error {
|
2018-12-13 03:09:52 +00:00
|
|
|
typealias AlertText = (title: String, message: String)
|
|
|
|
func alertText() -> AlertText
|
2018-12-06 10:43:48 +00:00
|
|
|
}
|