mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 10:49:06 +01:00
16 lines
366 B
Java
16 lines
366 B
Java
package net.sf.briar.transport;
|
|
|
|
import net.sf.briar.api.transport.ConnectionWindowFactory;
|
|
import net.sf.briar.api.transport.PacketWriter;
|
|
|
|
import com.google.inject.AbstractModule;
|
|
|
|
public class TransportModule extends AbstractModule {
|
|
|
|
@Override
|
|
protected void configure() {
|
|
bind(ConnectionWindowFactory.class).to(
|
|
ConnectionWindowFactoryImpl.class);
|
|
}
|
|
}
|