mirror of https://github.com/databricks/cli.git
19 lines
316 B
Go
19 lines
316 B
Go
package fs
|
|
|
|
import (
|
|
"github.com/databricks/cli/cmd/root"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// fsCmd represents the fs command
|
|
var fsCmd = &cobra.Command{
|
|
Use: "fs",
|
|
Short: "Filesystem related commands",
|
|
Long: `Commands to do DBFS operations.`,
|
|
Hidden: true,
|
|
}
|
|
|
|
func init() {
|
|
root.RootCmd.AddCommand(fsCmd)
|
|
}
|