databricks-cli/main.go

11 lines
138 B
Go
Raw Normal View History

2022-05-13 13:30:22 +00:00
package main
2022-05-14 17:56:09 +00:00
import (
"github.com/databricks/cli/cmd"
"github.com/databricks/cli/cmd/root"
2022-05-14 17:56:09 +00:00
)
2022-05-13 13:30:22 +00:00
func main() {
root.Execute(cmd.New())
2022-05-13 13:30:22 +00:00
}