Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save pjwelcome/60ba19dc3eaf470104168bc8fc78a4a7 to your computer and use it in GitHub Desktop.
Save pjwelcome/60ba19dc3eaf470104168bc8fc78a4a7 to your computer and use it in GitHub Desktop.
protocol ProductsRepositoryInjectable {
var products : ProductsRepository {get}
}
extension ProductsRepositoryInjectable {
var products : ProductsRepository {
return ProductsRepositoryImplementation()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment