commonMain.com.funkatronics.networking.HttpDriver.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rpc-core-jvm Show documentation
Show all versions of rpc-core-jvm Show documentation
Multiplatform JSON RPC Library using Kotlin Serialization
package com.funkatronics.networking
interface HttpRequest {
val url: String
val method: String
val properties: Map
val body: String?
}
interface HttpNetworkDriver {
suspend fun makeHttpRequest(request: HttpRequest): String
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy