Created
November 24, 2017 15:29
-
-
Save pepicrft/c4bad1e08d8fd289448a0d73159154b6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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