mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-23 03:17:43 +08:00
This can't be set independently at this point. We can add something back when we know the form this option should take.
10 lines
229 B
Go
10 lines
229 B
Go
package config
|
|
|
|
// Routing defines configuration options for libp2p routing
|
|
type Routing struct {
|
|
// Type sets default daemon routing mode.
|
|
//
|
|
// Can be one of "dht", "dhtclient", "dhtserver", "none", or unset.
|
|
Type string
|
|
}
|