Skip to content

Instantly share code, notes, and snippets.

@vialyx
Created March 13, 2018 09:14
Show Gist options
  • Save vialyx/74d3cfa9d8449c38f195e68f6dcf47d7 to your computer and use it in GitHub Desktop.
Save vialyx/74d3cfa9d8449c38f195e68f6dcf47d7 to your computer and use it in GitHub Desktop.
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