use of com.instaclustr.esop.local.LocalFileModule in project esop by instaclustr.
the class StorageModules method configure.
@Override
protected void configure() {
install(new KubernetesApiModule());
install(new S3Module());
install(new AzureModule());
install(new GCPModule());
install(new LocalFileModule());
install(new OracleModule());
install(new MinioModule());
install(new CephModule());
}
use of com.instaclustr.esop.local.LocalFileModule in project esop by instaclustr.
the class LocalBackupTest method setup.
@BeforeMethod
public void setup() throws Exception {
final List<Module> modules = new ArrayList<Module>() {
{
add(new LocalFileModule());
}
};
modules.addAll(defaultModules);
final Injector injector = Guice.createInjector(modules);
injector.injectMembers(this);
init();
}
Aggregations