com.ubervu.river.github.GitHubRiverModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch-river-github Show documentation
Show all versions of elasticsearch-river-github Show documentation
Github River for ElasticSearch
package com.ubervu.river.github;
import org.elasticsearch.common.inject.AbstractModule;
import org.elasticsearch.river.River;
/**
*
*/
public class GitHubRiverModule extends AbstractModule {
@Override
protected void configure() {
bind(River.class).to(GitHubRiver.class).asEagerSingleton();
}
}