cloud.localstack.docker.annotation.DefaultEnvironmentVariableProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of localstack-utils Show documentation
Show all versions of localstack-utils Show documentation
Java utilities for the LocalStack platform.
package cloud.localstack.docker.annotation;
import java.util.HashMap;
import java.util.Map;
public class DefaultEnvironmentVariableProvider implements IEnvironmentVariableProvider {
@Override
public Map getEnvironmentVariables() {
return new HashMap<>();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy