Files
Ilya Puchka 3ada18d756 Swift 3 (#120)
Swift 3 migration
2016-09-11 11:01:02 +02:00

15 lines
321 B
Swift

//
// PersonProviderAPI.swift
// Dip
//
// Created by Olivier Halligon on 10/09/2015.
// Copyright © 2015 AliSoftware. All rights reserved.
//
import Foundation
protocol PersonProviderAPI {
func fetchIDs(completion: @escaping ([Int]) -> Void)
func fetch(id: Int, completion: @escaping (Person?) -> Void)
}