This package has been renamed to github.com/jagreehal/autotel-go.
Update your imports:
// Old
import "github.com/jagreehal/autolemetry-go"
// New
import "github.com/jagreehal/autotel-go"This package will continue to work as a redirect, but we recommend updating to the new import path.
👉 github.com/jagreehal/autotel-go
All functionality remains the same, just with a new name.
go get github.com/jagreehal/autotel-goimport "github.com/jagreehal/autotel-go"
func main() {
cleanup, err := autotel.Init(context.Background(),
autotel.WithService("my-service"),
)
if err != nil {
log.Fatal(err)
}
defer cleanup()
}See the autotel-go README for complete documentation.