first commit

This commit is contained in:
2026-03-03 01:25:13 +07:00
parent 826ab3a914
commit f585f6dca9
226 changed files with 11855 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
package com.amz.genie.services
import com.amz.genie.models.Message
import okhttp3.MultipartBody
import okhttp3.RequestBody
import retrofit2.Call
import retrofit2.http.Header
import retrofit2.http.Multipart
import retrofit2.http.POST
import retrofit2.http.Part
interface ActionServices {
@Multipart
@POST("aksi/add")
fun add(
@Header("Authorization") token: String?,
@Part("data") data: RequestBody,
@Part files: List<MultipartBody.Part>? = emptyList()
): Call<Message>
}