org.http4k.core.multipartExt.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http4k-multipart Show documentation
Show all versions of http4k-multipart Show documentation
Http4k multipart form support
package org.http4k.core
import org.http4k.lens.MultipartForm
fun MultipartForm.with(vararg modifiers: (MultipartForm) -> MultipartForm) = modifiers.fold(this) { memo, next -> next(memo) }
© 2015 - 2024 Weber Informatics LLC | Privacy Policy