mirror of
https://github.com/libp2p/go-libp2p-peerstore.git
synced 2025-03-22 12:50:07 +08:00
12 lines
327 B
Go
12 lines
327 B
Go
package pstoremem
|
|
|
|
import (
|
|
pstore "github.com/libp2p/go-libp2p/core/peerstore"
|
|
"github.com/libp2p/go-libp2p/p2p/host/peerstore/pstoremem"
|
|
)
|
|
|
|
// Deprecated: use github.com/libp2p/go-libp2p/p2p/host/peerstore/pstoremem.NewPeerMetadata instead
|
|
func NewPeerMetadata() pstore.PeerMetadata {
|
|
return pstoremem.NewPeerMetadata()
|
|
}
|