39 lines
907 B
Go
39 lines
907 B
Go
package api
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/libp2p/go-libp2p-core/peer"
|
|
)
|
|
|
|
// Struct implements API passing calls to user-provided function values.
|
|
type Struct struct {
|
|
Internal struct {
|
|
ID func(context.Context) (peer.ID, error)
|
|
Version func(context.Context) (Version, error)
|
|
|
|
NetPeers func(context.Context) ([]peer.AddrInfo, error)
|
|
NetConnect func(context.Context, peer.AddrInfo) error
|
|
}
|
|
}
|
|
|
|
func (c *Struct) NetPeers(ctx context.Context) ([]peer.AddrInfo, error) {
|
|
return c.Internal.NetPeers(ctx)
|
|
}
|
|
|
|
func (c *Struct) NetConnect(ctx context.Context, p peer.AddrInfo) error {
|
|
return c.Internal.NetConnect(ctx, p)
|
|
}
|
|
|
|
// ID implements API.ID
|
|
func (c *Struct) ID(ctx context.Context) (peer.ID, error) {
|
|
return c.Internal.ID(ctx)
|
|
}
|
|
|
|
// Version implements API.Version
|
|
func (c *Struct) Version(ctx context.Context) (Version, error) {
|
|
return c.Internal.Version(ctx)
|
|
}
|
|
|
|
var _ API = &Struct{}
|