mirror of
				https://github.com/coredns/coredns.git
				synced 2025-11-04 03:03:14 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			214 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			214 B
		
	
	
	
		
			Go
		
	
	
	
	
	
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
 | 
						|
}
 |