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

izumi.fundamentals.platform.properties.EnvVars.scala Maven / Gradle / Ivy

The newest version!
package izumi.fundamentals.platform.properties

trait EnvVars {
  case class EnvVar protected (name: String) {
    def get(): Option[String] = Option(System.getenv().get(name))
    def isDefined(): Boolean = System.getenv().containsKey(name)
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy