Skip to content

Instantly share code, notes, and snippets.

@ekazaev
Created September 3, 2018 12:02
Show Gist options
  • Save ekazaev/10b08ff31d18802dc343ecaf84864af0 to your computer and use it in GitHub Desktop.
Save ekazaev/10b08ff31d18802dc343ecaf84864af0 to your computer and use it in GitHub Desktop.

public protocol Factory {

associatedtype ViewController: UIViewController

associatedtype Context

func build(with context: Context) throws -> ViewController

}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment