Files
Dip/SampleApp/DipSampleApp/Providers/StarshipProviderAPI.swift
Ilya Puchka 3ada18d756 Swift 3 (#120)
Swift 3 migration
2016-09-11 11:01:02 +02:00

15 lines
327 B
Swift

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