All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.funkatronics.networking.HttpDriver.kt Maven / Gradle / Ivy

There is a newer version: 0.2.8
Show newest version
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