commonMain.io.github.jan.supabase.storage.UploadData.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of storage-kt-jvm Show documentation
Show all versions of storage-kt-jvm Show documentation
Extends supabase-kt with a Storage Client
package io.github.jan.supabase.storage
import io.ktor.utils.io.ByteReadChannel
/**
* Represents the data to upload
* @param stream The [ByteReadChannel] for streaming the data
* @param size The size of the data
*/
data class UploadData(val stream: ByteReadChannel, val size: Long)