14 lines
321 B
Swift
14 lines
321 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(completion: @escaping (Result<[FeedlyCollection], Error>) -> ())
|
|
}
|