master
go 12 lines 225 Bytes
Raw
1 package plugin
2
3 import (
4 "github.com/opentracing/opentracing-go"
5 )
6
7 // PluginTracer is an interface that can be implemented to add a tracer.
8 type PluginTracer interface {
9 Plugin
10
11 InitTracer() (opentracing.Tracer, error)
12 }