mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 11:19:04 +01:00
11 lines
181 B
Java
11 lines
181 B
Java
package org.briarproject.api.reporting;
|
|
|
|
import org.briarproject.api.crypto.PublicKey;
|
|
|
|
public interface DevConfig {
|
|
|
|
PublicKey getDevPublicKey();
|
|
|
|
String getDevOnionAddress();
|
|
}
|