blob: 35a8ddabd44645b27aa8300ce302443b2635ed97 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
package trace
import (
"github.com/coredns/coredns/plugin"
ot "github.com/opentracing/opentracing-go"
)
// Trace holds the tracer and endpoint info
type Trace interface {
plugin.Handler
Tracer() ot.Tracer
}
|