Files
httprunner/hrp/cmd/root.go
2021-10-16 23:14:16 +08:00

32 lines
729 B
Go

package cmd
import (
"fmt"
"os"
"github.com/spf13/cobra"
"github.com/httprunner/hrp"
)
// RootCmd represents the base command when called without any subcommands
var RootCmd = &cobra.Command{
Use: "hrp",
Short: "One-stop solution for HTTP(S) testing.",
Long: `hrp(HttpRunnerPlus) is the next generation for HttpRunner. Enjoy! ✨ 🚀 ✨
License: Apache-2.0
Github: https://github.com/httprunner/hrp
Copyright 2021 debugtalk`,
Version: hrp.VERSION,
}
// Execute adds all child commands to the root command and sets flags appropriately.
// This is called by main.main(). It only needs to happen once to the rootCmd.
func Execute() {
if err := RootCmd.Execute(); err != nil {
fmt.Println(err)
os.Exit(1)
}
}