databricks-cli/cmd/fs/ls.go

24 lines
342 B
Go

package fs
import (
"fmt"
"github.com/spf13/cobra"
)
// lsCmd represents the ls command
var lsCmd = &cobra.Command{
Use: "ls <dir-name>",
Short: "Lists files",
Long: `Lists files`,
Hidden: true,
RunE: func(cmd *cobra.Command, args []string) error {
return fmt.Errorf("TODO")
},
}
func init() {
fsCmd.AddCommand(lsCmd)
}