package routing
import (
"context"
routinghelpers "github.com/libp2p/go-libp2p-routing-helpers"
"github.com/libp2p/go-libp2p/core/routing"
)
type ProvideManyRouter interface {
routinghelpers.ProvideManyRouter
routing.Routing
}
var (
_ routing.Routing = &httpRoutingWrapper{}
_ routinghelpers.ProvideManyRouter = &httpRoutingWrapper{}
)
type httpRoutingWrapper struct {
routing.ContentRouting
routing.PeerRouting
routing.ValueStore
routinghelpers.ProvideManyRouter
}
func (c *httpRoutingWrapper) Bootstrap(ctx context.Context) error {
return nil
}