kubo/config/peering.go
Steven Allen 75bde89788 go-ipfs-config: doc: improve wording for peering config
Co-authored-by: Will <will.scott@protocol.ai>
2020-05-25 19:14:40 -07:00

10 lines
215 B
Go

package config
import "github.com/libp2p/go-libp2p-core/peer"
// Peering configures the peering service.
type Peering struct {
// Peers lists the nodes to attempt to stay connected with.
Peers []peer.AddrInfo
}