Skip to content

Instantly share code, notes, and snippets.

@pepicrft
Created November 24, 2017 15:29
Show Gist options
  • Save pepicrft/c4bad1e08d8fd289448a0d73159154b6 to your computer and use it in GitHub Desktop.
Save pepicrft/c4bad1e08d8fd289448a0d73159154b6 to your computer and use it in GitHub Desktop.
// Home.swift in uHome
import UIKit
import uCore
public class Home {
let client: Client
public init(client: Client) {
self.client = client
}
public func makeViewController(delegate: HomeDelegate) -> UIViewController {
return HomeViewController(client: client, delegate: delegate)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment