Files
bifrost/plugins/otel/client.go
Beyhan Oğur 880f412e2c first commit
2026-04-26 21:52:23 +03:00

12 lines
195 B
Go

package otel
import (
"context"
)
// OtelClient is the interface for the OpenTelemetry client
type OtelClient interface {
Emit(ctx context.Context, rs []*ResourceSpan) error
Close() error
}