ipld-eth-server/vendor/github.com/ipfs/go-ipfs/plugin/tracer.go
Elizabeth Engelman 36533f7c3f Update vendor directory and make necessary code changes
Fixes for new geth version
2019-09-25 16:32:27 -05:00

12 lines
223 B
Go

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