Skip to content

Instantly share code, notes, and snippets.

View YSakhno's full-sized avatar
🦦

Yuri Sakhno YSakhno

🦦
View GitHub Profile
@dellisd
dellisd / Resource.kt
Last active January 5, 2025 13:04
Kotlin Multiplatform test resources
// Common
const val RESOURCE_PATH = "./src/commonTest/resources"
expect class Resource(name: String) {
val name: String
fun exists(): Boolean
fun readText(): String
}