14 lines
333 B
Swift
14 lines
333 B
Swift
|
//
|
||
|
// FeedlyGetEntriesService.swift
|
||
|
// Account
|
||
|
//
|
||
|
// Created by Kiel Gillard on 28/10/19.
|
||
|
// Copyright © 2019 Ranchero Software, LLC. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
protocol FeedlyGetEntriesService: class {
|
||
|
func getEntries(for ids: Set<String>, completionHandler: @escaping (Result<[FeedlyEntry], Error>) -> ())
|
||
|
}
|