32 lines
447 B
Swift
32 lines
447 B
Swift
//
|
|
// PseudoFeed.swift
|
|
// NetNewsWire
|
|
//
|
|
// Created by Brent Simmons on 11/19/17.
|
|
// Copyright © 2017 Ranchero Software. All rights reserved.
|
|
//
|
|
|
|
#if os(macOS)
|
|
|
|
import AppKit
|
|
import Articles
|
|
import Account
|
|
import RSCore
|
|
|
|
protocol PseudoFeed: AnyObject, Feed, SmallIconProvider, PasteboardWriterOwner {
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
import UIKit
|
|
import Articles
|
|
import Account
|
|
import RSCore
|
|
|
|
protocol PseudoFeed: AnyObject, Feed, SmallIconProvider {
|
|
|
|
}
|
|
|
|
#endif
|