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

com.gabrielfeo.develocity.api.internal.Env.kt Maven / Gradle / Ivy

The newest version!
package com.gabrielfeo.develocity.api.internal

internal var env: Env = RealEnv

internal interface Env {
    operator fun get(name: String): String?
}

internal object RealEnv : Env {
    override fun get(name: String): String? = System.getenv(name)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy