io.split.qos.server.modules.QOSClientsModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qosrunner Show documentation
Show all versions of qosrunner Show documentation
Framework for running JUnit Tests as a Continous Service (QoS)
package io.split.qos.server.modules;
import com.google.inject.AbstractModule;
import io.split.qos.server.integrations.slack.broadcaster.SlackBroadcastIntegrationImpl;
import io.split.qos.server.integrations.slack.broadcaster.SlackBroadcaster;
public class QOSClientsModule extends AbstractModule {
@Override
protected void configure() {
bind(SlackBroadcaster.class).to(SlackBroadcastIntegrationImpl.class);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy