123456789101112131415161718192021222324 |
- /*
- Copyright © 2022 NAME HERE <EMAIL ADDRESS>
- */
- package cmd
- import (
- "fmt"
- "github.com/spf13/cobra"
- )
- // testCmd represents the test command
- var testCmd = &cobra.Command{
- Use: "test",
- Short: "A brief description of your command",
- Run: func(cmd *cobra.Command, args []string) {
- fmt.Println("test called")
- },
- }
- func init() {
- RootCmd.AddCommand(testCmd)
- }
|