mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
16 lines
391 B
Java
16 lines
391 B
Java
package net.sf.briar.protocol.stream;
|
|
|
|
import net.sf.briar.api.protocol.stream.StreamConnectionFactory;
|
|
|
|
import com.google.inject.AbstractModule;
|
|
import com.google.inject.Singleton;
|
|
|
|
public class ProtocolStreamModule extends AbstractModule {
|
|
|
|
@Override
|
|
protected void configure() {
|
|
bind(StreamConnectionFactory.class).to(
|
|
StreamConnectionFactoryImpl.class).in(Singleton.class);
|
|
}
|
|
}
|