Skip to content

Commit 062ba5d

Browse files
committed
Hello, world
1 parent 1ba345c commit 062ba5d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

cli-files/go-ls/cmd/root.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ import (
1010
var rootCmd = &cobra.Command{
1111
Use: "go-ls",
1212
Short: "go-ls is a re-implementation of the ls command",
13-
Run: func(cmd *cobra.Command, args []string) {},
13+
Run: func(cmd *cobra.Command, args []string) {
14+
fmt.Println("Hello, world!")
15+
},
1416
}
1517

1618
func Execute() {

0 commit comments

Comments
 (0)