Code & Deploy
Code
Code Review
Models
Repos
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@cryptotaxi247
/
kubo
kubo
/
plugin
/
tracer.go
Code
Commits
Issues
Pulls
Sessions
CI/CD
master
master
go
12 lines
225 Bytes
Copy permalink
Copy
Raw
1
package
plugin
2
3
import
(
4
"github.com/opentracing/opentracing-go"
5
)
6
7
// PluginTracer is an interface that can be implemented to add a tracer.
8
type
PluginTracer
interface
{
9
Plugin
10
11
InitTracer
()
(
opentracing
.
Tracer
,
error
)
12
}