io.shaka.http.Entity.scala Maven / Gradle / Ivy
The newest version!
package io.shaka.http
object Entity {
def apply(entity: String): Entity = Entity(entity.getBytes)
}
case class Entity(content: Array[Byte]) {
override def toString: String = new String(content)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy