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

spice.http.server.rest.MultipartRequest.scala Maven / Gradle / Ivy

There is a newer version: 0.6.1
Show newest version
package spice.http.server.rest

import spice.http.content.FormDataContent

/**
 * Drop-in convenience class to wrap around an existing Request object and give back `FormDataContent` when available.
 */
trait MultipartRequest {
  def content: FormDataContent

  def withContent(content: FormDataContent): MultipartRequest
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy