2019-10-19 08:21:02 +11:00
|
|
|
//
|
|
|
|
// FeedlyGetEntriesService.swift
|
|
|
|
// Account
|
|
|
|
//
|
|
|
|
// Created by Kiel Gillard on 28/10/19.
|
|
|
|
// Copyright © 2019 Ranchero Software, LLC. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
|
|
|
|
protocol FeedlyGetEntriesService: class {
|
2019-12-14 17:14:55 -07:00
|
|
|
func getEntries(for ids: Set<String>, completion: @escaping (Result<[FeedlyEntry], Error>) -> ())
|
2019-10-19 08:21:02 +11:00
|
|
|
}
|