Skip to content

Instantly share code, notes, and snippets.

@robertofrontado
Last active April 13, 2020 15:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robertofrontado/9e2a4b0cdb17910ddef0527787c01307 to your computer and use it in GitHub Desktop.
Save robertofrontado/9e2a4b0cdb17910ddef0527787c01307 to your computer and use it in GitHub Desktop.
DependencyInjectionExample
class Repository {}
class ViewModel {
let repository: Repository
init(repository: Repository) {
self.repository = repository
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment