9c3cc1ca5f
- There's really no plan to support other platforms on this code base - The "KMP" modules only had android target which is rather pointless - `i18n` involves more work but given it has no actual code keeping it as is
7 lines
170 B
Kotlin
7 lines
170 B
Kotlin
package eu.kanade.tachiyomi.util
|
|
|
|
import rx.Observable
|
|
import tachiyomi.core.common.util.lang.awaitSingle
|
|
|
|
suspend fun <T> Observable<T>.awaitSingle(): T = awaitSingle()
|