package cmd import ( "fmt" "os" "github.com/spf13/cobra" ) var configPath string var rootCmd = &cobra.Command{ Use: "testpaper", Short: "Start testpaper server", Long: `testpaper service`, Run: func(cmd *cobra.Command, args []string) { }, } func Execute() { if err := rootCmd.Execute(); err != nil { fmt.Println(err) os.Exit(1) } }