mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-13 18:06:50 +01:00
14 lines
328 B
Swift
14 lines
328 B
Swift
//
|
|
// FeedlyGetCollectionsService.swift
|
|
// Account
|
|
//
|
|
// Created by Kiel Gillard on 21/10/19.
|
|
// Copyright © 2019 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
protocol FeedlyGetCollectionsService: class {
|
|
func getCollections(completionHandler: @escaping (Result<[FeedlyCollection], Error>) -> ())
|
|
}
|