Created
March 13, 2018 09:14
-
-
Save vialyx/74d3cfa9d8449c38f195e68f6dcf47d7 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
class User { | |
var id: UInt | |
var name: String | |
init(id: UInt, name: String) { | |
self.id = id | |
self.name = name | |
} | |
} | |
let classBundle = Bundle(for: User.self) | |
print("class bundle: \(classBundle)") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment