Skip to content

Instantly share code, notes, and snippets.

@chrsp
Last active January 24, 2021 16:15
Show Gist options
  • Save chrsp/c2ca2a1628121a670f6a5cccbead6733 to your computer and use it in GitHub Desktop.
Save chrsp/c2ca2a1628121a670f6a5cccbead6733 to your computer and use it in GitHub Desktop.
public protocol KitchenLocalRepository {
public func getIngredients(_ recipe: Recipe) -> [Ingredient]?
}
public protocol KitchenRemoteRepository {
public func getIngredients(_ recipe: Recipe, completion: ([Ingredient]?) -> Void))
}
public protocol CookerProtocol {
public func cook(_ recipe: Recipe)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment