
as.json.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json4s-native_2.9.1-1 Show documentation
Show all versions of json4s-native_2.9.1-1 Show documentation
Dispatch module providing json4s native support
The newest version!
package dispatch.as.json4s
import org.json4s._
import org.json4s.native.JsonMethods._
import com.ning.http.client.Response
object Json extends (Response => JValue) {
def apply(r: Response) =
(dispatch.as.String andThen (s => parse(StringInput(s), true)))(r)
}