Skip to content

Instantly share code, notes, and snippets.

@Sajjon
Created November 26, 2018 09:53
Show Gist options
  • Save Sajjon/31818f14e7197a882d2380962e739629 to your computer and use it in GitHub Desktop.
Save Sajjon/31818f14e7197a882d2380962e739629 to your computer and use it in GitHub Desktop.
Medium article: SLC part 1 - InputType
protocol InputType {
associatedtype FromView
associatedtype FromController
var fromView: FromView { get }
var fromController: FromController { get }
init(fromView: FromView, fromController: FromController)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment