uk.co.unclealex.templates.package.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of play-diagnostics_2.13 Show documentation
Show all versions of play-diagnostics_2.13 Show documentation
Diagnostics for Play applications
package uk.co.unclealex
import play.api.http.{ContentTypeOf, ContentTypes}
import play.api.mvc.Codec
/**
* Implicits for custom Twirl templates.
*/
package object templates {
implicit def contentTypeJson(implicit codec: Codec): ContentTypeOf[Json] =
ContentTypeOf[Json](Some(ContentTypes.JSON))
}