mirror of https://github.com/databricks/cli.git
11 lines
200 B
Go
11 lines
200 B
Go
|
package root
|
||
|
|
||
|
import (
|
||
|
"github.com/databricks/bricks/internal/build"
|
||
|
"github.com/databricks/databricks-sdk-go/useragent"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
useragent.WithProduct("bricks", build.GetInfo().Version)
|
||
|
}
|