https://github.com/ipfs/go-ipfs
Raw File
Tip revision: 294db3e3024feef4552a58fb5ca38aef58254f12 authored by Henrique Dias on 03 July 2023, 07:17:09 UTC
Merge pull request #9988 from ipfs/release-v0.21.0
Tip revision: 294db3e
peering.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
}
back to top