gouick/cmd/test.go
Matthieu 'JP' DERASSE 5f4e7e5be6
All checks were successful
continuous-integration/drone/push Build is passing
fix(global): Multiple small fixes and upgrade of go + goswagger
2022-11-21 18:40:39 +00:00

24 lines
355 B
Go

/*
Copyright © 2022 Matthieu Derasse <git@derasse.fr>
*/
package cmd
import (
"fmt"
"github.com/spf13/cobra"
)
// testCmd represents the test command.
var testCmd = &cobra.Command{
Use: "test",
Short: "Launch Test",
Run: func(cmd *cobra.Command, args []string) {
fmt.Println("test called")
},
}
func init() {
rootCmd.AddCommand(testCmd)
}