Skip to content

Instantly share code, notes, and snippets.

@dougritter
Created September 5, 2019 22:43
Show Gist options
  • Save dougritter/cdcf7a4d07d8d3f64cda24a6db55e5fd to your computer and use it in GitHub Desktop.
Save dougritter/cdcf7a4d07d8d3f64cda24a6db55e5fd to your computer and use it in GitHub Desktop.
AccountPresenter with router
class AccountPresenterImplementation: AccountPresenter {
private let router: Router
init(router: Router) {
self.router = router
}
func nextPressed(accountName: String) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment