1
0
mirror of https://github.com/golang/go synced 2024-11-06 06:36:20 -07:00
go/internal/telemetry/export/export.go

14 lines
393 B
Go
Raw Normal View History

// Copyright 2019 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Package export holds some exporter implementations.
// Larger more complex exporters are in sub packages of their own.
package export
import "golang.org/x/tools/internal/telemetry/event"
var (
SetExporter = event.SetExporter
)