Files
NetNewsWire/Account/Sources/Account/Feedly/Services/FeedlyGetStreamContentsService.swift
2021-02-06 07:06:45 +08:00

14 lines
420 B
Swift

//
// FeedlyGetStreamContentsService.swift
// Account
//
// Created by Kiel Gillard on 21/10/19.
// Copyright © 2019 Ranchero Software, LLC. All rights reserved.
//
import Foundation
protocol FeedlyGetStreamContentsService: AnyObject {
func getStreamContents(for resource: FeedlyResourceId, continuation: String?, newerThan: Date?, unreadOnly: Bool?, completion: @escaping (Result<FeedlyStream, Error>) -> ())
}