Skip to content

Instantly share code, notes, and snippets.

@Jot5

Jot5/file.swift Secret

Created December 12, 2018 09:30
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 Jot5/97fa8ac581a7d46c4cde18d5796bb516 to your computer and use it in GitHub Desktop.
Save Jot5/97fa8ac581a7d46c4cde18d5796bb516 to your computer and use it in GitHub Desktop.
final class SomeModuleNamePresenter {
private let connector: BaseConnector
private weak var view: SomeModuleNameView?
init(connector: BaseConnector, view: SomeModuleNameView) {
self.connector = connector
self.view = view
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment