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

io.buoyant.admin.HtmlView.scala Maven / Gradle / Ivy

There is a newer version: 1.7.5
Show newest version
package io.buoyant.admin

import com.twitter.finagle.http.{Response, MediaType}
import com.twitter.util.Future

trait HtmlView {
  def html(
    content: String,
    tailContent: String = "",
    csses: Seq[String] = Nil,
    navHighlight: String = "",
    showRouterDropdown: Boolean = false
  ): String

  def mkResponse(
    content: String,
    mediaType: String = MediaType.Html
  ): Future[Response]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy