com.github.zhengframework.jdbc.migrate.FlywayMigrateModuleProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zheng-migrate-flyway Show documentation
Show all versions of zheng-migrate-flyway Show documentation
zheng framework module: database migrate support by flyway
package com.github.zhengframework.jdbc.migrate;
import com.github.zhengframework.core.ModuleProvider;
import com.google.inject.Module;
public class FlywayMigrateModuleProvider implements ModuleProvider {
@Override
public Module getModule() {
return new FlywayMigrateModule();
}
}