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

com.vinaysshenoy.quarantine.QuarantineApi.kt Maven / Gradle / Ivy

The newest version!
package com.vinaysshenoy.quarantine

import retrofit2.Call
import retrofit2.http.Body
import retrofit2.http.POST
import retrofit2.http.Path

interface QuarantineApi {

    @POST("{projectSlug}/reports")
    fun sendTestRun(
        @Path("projectSlug") projectSlug: String,
        @Body payload: List
    ): Call
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy