Skip to content

Instantly share code, notes, and snippets.

@ekazaev
Created September 3, 2018 12:02
Show Gist options
  • Save ekazaev/fde423fac45b0701eb130539440c97f9 to your computer and use it in GitHub Desktop.
Save ekazaev/fde423fac45b0701eb130539440c97f9 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