We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bitrise-io/bitrise-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
tracer.go•436 B
// Unless explicitly stated otherwise all files in this repository are licensed
// under the Apache License Version 2.0.
// This product includes software developed at Datadog (https://www.datadoghq.com/).
// Copyright 2024 Datadog, Inc.
package internal
import "sync/atomic"
var (
tracerInit atomic.Bool
)
func SetTracerInitialized(val bool) {
tracerInit.Store(val)
}
func TracerInitialized() bool {
return tracerInit.Load()
}