cloud.prefab.client.internal.EnvironmentVariableLookup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client Show documentation
Show all versions of client Show documentation
API Client for https://prefab.cloud: rate limits, feature flags and semaphores as a service
package cloud.prefab.client.internal;
import java.util.Optional;
public interface EnvironmentVariableLookup {
Optional get(String name);
}