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

spinoco.protocol.http.header.value.AgentVersion.scala Maven / Gradle / Ivy

The newest version!
package spinoco.protocol.http.header.value

import scodec.Codec
import spinoco.protocol.http.codec.helper._


sealed case class AgentVersion(version:String)

object AgentVersion {
  val codec: Codec[AgentVersion] =
    trimmedUtf8String.xmap(AgentVersion.apply, _.version)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy