Skip to content

Instantly share code, notes, and snippets.

@Maruchin1
Created July 24, 2024 14:50
Show Gist options
  • Save Maruchin1/ce88bd63f7be641e0e7e93010a404c0a to your computer and use it in GitHub Desktop.
Save Maruchin1/ce88bd63f7be641e0e7e93010a404c0a to your computer and use it in GitHub Desktop.
import platform.Foundation.NSURL
actual class URL(private val url: NSURL) {
actual constructor(path: String) : this(NSURL(string = path))
override fun toString(): String {
return url.absoluteString.orEmpty()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment