mirror of https://github.com/databricks/cli.git
9 lines
240 B
Go
9 lines
240 B
Go
|
package config
|
||
|
|
||
|
// Workspace defines configurables at the workspace level.
|
||
|
type Workspace struct {
|
||
|
// TODO: Add all unified authentication configurables.
|
||
|
Host string `json:"host,omitempty"`
|
||
|
Profile string `json:"profile,omitempty"`
|
||
|
}
|