1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-08-06 11:31:54 +08:00
Files
kubo/config/peering.go
2022-09-09 17:09:38 +02: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
}