blob: 6585d8051fb3faa55f9c2b9ba108842c1e999791 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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
}
|