mirror of
https://github.com/hashicorp/terraform.git
synced 2026-04-28 09:36:50 -04:00
15 lines
276 B
Go
15 lines
276 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package command
|
|
|
|
import (
|
|
"go.opentelemetry.io/otel"
|
|
"go.opentelemetry.io/otel/trace"
|
|
)
|
|
|
|
var tracer trace.Tracer
|
|
|
|
func init() {
|
|
tracer = otel.Tracer("github.com/hashicorp/terraform/internal/command")
|
|
}
|