simple ktor-client implementation

This commit is contained in:
2024-08-08 13:03:17 +03:00
parent c2f79f9007
commit efe4536ebf
22 changed files with 383 additions and 166 deletions
@@ -0,0 +1,8 @@
package dev.meloda.overseerr.network.model
import io.ktor.client.engine.*
import io.ktor.client.engine.okhttp.*
actual class HttpClientEngineFactoryProvider actual constructor() {
actual fun get(): HttpClientEngineFactory<*> = OkHttp
}