12 lines
223 B
Go
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)
|
|
}
|