Files
archived-sern-cli/cmd/cli/extra.go
2022-06-06 10:43:23 +02:00

16 lines
353 B
Go

package cli
import (
"github.com/sern-handler/cli/pkg/extra"
"github.com/spf13/cobra"
)
var extraCmd = &cobra.Command{
Use: "extra",
Short: "Add extra tools to your Sern project.",
Long: `Add extra tools to your Sern project to help you with the setup and development.`,
Run: func(cmd *cobra.Command, args []string) {
extra.Execute()
},
}