databricks-cli/bundle/env/host.go

12 lines
168 B
Go
Raw Normal View History

2024-07-18 07:04:16 +00:00
package env
import "context"
const HostVariable = "DATABRICKS_HOST"
func Host(ctx context.Context) (string, bool) {
return get(ctx, []string{
HostVariable,
})
}