Skip to content

Commit

Permalink
add placeholder for init command (bubbletea incoming)
Browse files Browse the repository at this point in the history
  • Loading branch information
taigrr committed Oct 5, 2023
1 parent f95bdee commit 80b6d79
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions cmd/grlx/cmd/init.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package cmd

import (
"github.com/spf13/cobra"
)

var initCmd = &cobra.Command{
Use: "init",
Short: "get started with a new grlx installation",
Run: func(cmd *cobra.Command, _ []string) {
cmd.Help()
},
}

func init() {
rootCmd.AddCommand(initCmd)
}

0 comments on commit 80b6d79

Please sign in to comment.