kubo/config/routing.go
Steven Allen ab3a78d78e go-ipfs-config: feat: remove Routing.PrivateType
This can't be set independently at this point. We can add something back when we
know the form this option should take.
2020-04-09 13:24:03 -07:00

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
}