databricks-cli/main.go

13 lines
170 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 (
"context"
"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(context.Background()))
2022-05-13 13:30:22 +00:00
}