mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-12 01:17:29 +01:00
14 lines
276 B
Swift
14 lines
276 B
Swift
|
//
|
||
|
// Authentication.swift
|
||
|
// Multiplatform macOS
|
||
|
//
|
||
|
// Created by Stuart Breckenridge on 05/12/2020.
|
||
|
// Copyright © 2020 Ranchero Software. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
protocol AccountUpdater {
|
||
|
var authenticationError: AccountUpdateErrors { get set }
|
||
|
}
|