org.tbk.spring.testcontainer.bitcoind.BitcoindContainer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-testcontainer-bitcoind-starter Show documentation
Show all versions of spring-testcontainer-bitcoind-starter Show documentation
spring testcontainer bitcoin starter
package org.tbk.spring.testcontainer.bitcoind;
import org.testcontainers.containers.GenericContainer;
import org.testcontainers.utility.DockerImageName;
public class BitcoindContainer> extends GenericContainer {
public BitcoindContainer(DockerImageName dockerImageName) {
super(dockerImageName);
}
}