https://github.com/ipfs/go-ipfs
Raw File
Tip revision: 0f1181d23218fe2d8263eb1eab9c415ff5ea57c0 authored by galargh on 06 March 2023, 12:30:18 UTC
chore: update version
Tip revision: 0f1181d
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