Update Settings for Accounts to work with the latest SwiftUI

This commit is contained in:
Maurice Parker
2019-09-07 20:50:57 -05:00
parent a01b9ebe73
commit fe874f3ca7
8 changed files with 215 additions and 170 deletions

View File

@@ -0,0 +1,16 @@
//
// Account-Extensions.swift
// NetNewsWire-iOS
//
// Created by Maurice Parker on 9/7/19.
// Copyright © 2019 Ranchero Software. All rights reserved.
//
import Foundation
import Account
extension Account: Identifiable {
public var id: String {
return accountID
}
}