mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Google Reader API Account Provider and initial integration
* Creation of account classes (based on FeedBin) * Integration on Mac side into account dialog * Initial authentication call works and extracts auth token, but no where to put it right now.
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
//
|
||||
// GoogleReaderCompatibleIcon.swift
|
||||
// Account
|
||||
//
|
||||
// Created by Maurice Parker on 5/6/19.
|
||||
// Copyright © 2019 Ranchero Software, LLC. All rights reserved.
|
||||
//
|
||||
|
||||
import Foundation
|
||||
|
||||
struct GoogleReaderCompatibleIcon: Codable {
|
||||
|
||||
let host: String
|
||||
let url: String
|
||||
|
||||
enum CodingKeys: String, CodingKey {
|
||||
case host
|
||||
case url
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user