mirror of https://github.com/databricks/cli.git
8 lines
190 B
Go
8 lines
190 B
Go
|
package config
|
||
|
|
||
|
type Git struct {
|
||
|
Branch string `json:"branch,omitempty"`
|
||
|
OriginURL string `json:"origin_url,omitempty"`
|
||
|
Commit string `json:"commit,omitempty" bundle:"readonly"`
|
||
|
}
|