mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-02-21 18:37:26 +08: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}
|
|
)
|