19 lines
271 B
Swift
19 lines
271 B
Swift
|
//
|
||
|
// PseudoFeed.swift
|
||
|
// Evergreen
|
||
|
//
|
||
|
// Created by Brent Simmons on 11/19/17.
|
||
|
// Copyright © 2017 Ranchero Software. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
import Data
|
||
|
import RSCore
|
||
|
|
||
|
protocol PseudoFeed: class, DisplayNameProvider, UnreadCountProvider {
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|