mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-14 12:15:18 +00:00
13 lines
255 B
Go
13 lines
255 B
Go
package dht
|
|
|
|
import (
|
|
"github.com/libp2p/go-libp2p/core/protocol"
|
|
)
|
|
|
|
var (
|
|
// ProtocolDHT is the default DHT protocol.
|
|
ProtocolDHT protocol.ID = "/ipfs/kad/1.0.0"
|
|
// DefaultProtocols spoken by the DHT.
|
|
DefaultProtocols = []protocol.ID{ProtocolDHT}
|
|
)
|