2022-05-14 17:54:35 +00:00
|
|
|
package fs
|
2022-05-13 14:21:47 +00:00
|
|
|
|
|
|
|
import (
|
2023-05-16 16:35:39 +00:00
|
|
|
"github.com/databricks/cli/cmd/root"
|
2022-05-13 14:21:47 +00:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
// fsCmd represents the fs command
|
|
|
|
var fsCmd = &cobra.Command{
|
2023-06-05 15:41:30 +00:00
|
|
|
Use: "fs",
|
|
|
|
Short: "Filesystem related commands",
|
|
|
|
Long: `Commands to do DBFS operations.`,
|
2022-05-13 14:21:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2022-05-14 17:54:35 +00:00
|
|
|
root.RootCmd.AddCommand(fsCmd)
|
2022-05-13 14:21:47 +00:00
|
|
|
}
|