1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-05-17 15:06:47 +08:00
Files
kubo/plugin/tracer.go

13 lines
225 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)
}