mirror of
https://github.com/fluencelabs/go-libp2p-kad-dht
synced 2025-04-25 06:42:13 +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"
|
||
|
// DefualtProtocols spoken by the DHT.
|
||
|
DefaultProtocols = []protocol.ID{ProtocolDHT}
|
||
|
)
|