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

spice.http.server.BaseURL.scala Maven / Gradle / Ivy

There is a newer version: 0.5.14
Show newest version
package spice.http.server

import spice.http.HttpExchange
import spice.net.URL

object BaseURL {
  private val key: String = "spice.base.url"

  def get(exchange: HttpExchange): Option[URL] = exchange.store.get[URL](key)

  def set(exchange: HttpExchange, baseURL: URL): Unit = exchange.store(key) = baseURL
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy