mirror of https://github.com/databricks/cli.git
24 lines
342 B
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)
|
|
}
|