Skip to content

Instantly share code, notes, and snippets.

@llinardos
Created August 1, 2017 03:44
Show Gist options
  • Save llinardos/dc44b93fcc9da23fbc9c2246a34e712f to your computer and use it in GitHub Desktop.
Save llinardos/dc44b93fcc9da23fbc9c2246a34e712f to your computer and use it in GitHub Desktop.
enum Image {
case local(UIImage)
case remote(URL)
init(localImage: UIImage) {
self = .local(localImage)
}
init(remoteUrl: URL) {
self = .remote(remoteUrl)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment