mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-14 03:39:05 +01:00
16 lines
341 B
Java
16 lines
341 B
Java
package net.sf.briar.crypto;
|
|
|
|
import net.sf.briar.api.crypto.CryptoComponent;
|
|
|
|
import com.google.inject.AbstractModule;
|
|
import com.google.inject.Singleton;
|
|
|
|
public class CryptoModule extends AbstractModule {
|
|
|
|
@Override
|
|
protected void configure() {
|
|
bind(CryptoComponent.class).to(
|
|
CryptoComponentImpl.class).in(Singleton.class);
|
|
}
|
|
}
|