
com.hubspot.singularity.logwatcher.config.test.SingularityLogWatcherTestModule Maven / Gradle / Ivy
package com.hubspot.singularity.logwatcher.config.test;
import com.google.inject.AbstractModule;
import com.hubspot.singularity.logwatcher.LogForwarder;
import com.hubspot.singularity.logwatcher.SimpleStore;
import com.hubspot.singularity.logwatcher.impl.FileBasedSimpleStore;
public class SingularityLogWatcherTestModule extends AbstractModule {
@Override
protected void configure() {
bind(SimpleStore.class).to(FileBasedSimpleStore.class);
bind(LogForwarder.class).toInstance(new LogLogForwarder());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy