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

com.mle.play.json.JsonWriter.scala Maven / Gradle / Ivy

The newest version!
package com.mle.play.json

import play.api.libs.json.{JsValue, Json, Writes}

/**
 * @author Michael
 */
class JsonWriter[T, U](write: T => U)(implicit tjs: Writes[U]) extends Writes[T] {
  override def writes(o: T): JsValue = Json.toJson(write(o))
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy