mirror of https://github.com/databricks/cli.git
12 lines
168 B
Go
12 lines
168 B
Go
|
package env
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
const HostVariable = "DATABRICKS_HOST"
|
||
|
|
||
|
func Host(ctx context.Context) (string, bool) {
|
||
|
return get(ctx, []string{
|
||
|
HostVariable,
|
||
|
})
|
||
|
}
|