mirror of
https://github.com/coredns/coredns.git
synced 2025-10-29 01:04:15 -04:00
13 lines
221 B
Go
13 lines
221 B
Go
|
|
package trace
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/coredns/coredns/middleware"
|
||
|
|
ot "github.com/opentracing/opentracing-go"
|
||
|
|
)
|
||
|
|
|
||
|
|
// Trace holds the tracer and endpoint info
|
||
|
|
type Trace interface {
|
||
|
|
middleware.Handler
|
||
|
|
Tracer() ot.Tracer
|
||
|
|
}
|