atlassian.connect.RoutesPrefix.scala Maven / Gradle / Ivy
The newest version!
// @GENERATOR:play-routes-compiler
// @SOURCE:modules/core/conf/atlassian.connect.routes
package atlassian.connect {
object RoutesPrefix {
private var _prefix: String = "/"
def setPrefix(p: String): Unit = {
_prefix = p
}
def prefix: String = _prefix
val byNamePrefix: Function0[String] = { () => prefix }
}
}