ipld-eth-server/vendor/github.com/ipfs/go-ipfs/plugin/tracer.go
2019-12-02 13:24:46 -06:00

12 lines
255 B
Go

package plugin
import (
"gx/ipfs/QmWLWmRVSiagqP15jczsGME1qpob6HDbtbHAY2he9W5iUo/opentracing-go"
)
// PluginTracer is an interface that can be implemented to add a tracer
type PluginTracer interface {
Plugin
InitTracer() (opentracing.Tracer, error)
}