root.go 363 B

1234567891011121314151617181920212223242526
  1. package cmd
  2. import (
  3. "os"
  4. "github.com/spf13/cobra"
  5. )
  6. var RootCmd = &cobra.Command{
  7. Use: "kptPasture",
  8. Short: "科湃腾牛群系统",
  9. }
  10. func Execute() {
  11. err := RootCmd.Execute()
  12. if err != nil {
  13. os.Exit(1)
  14. }
  15. }
  16. func init() {
  17. RootCmd.AddCommand(httpCmd)
  18. RootCmd.AddCommand(JobCmd)
  19. RootCmd.AddCommand(CrontabCmd)
  20. RootCmd.AddCommand(ConsumerCmd)
  21. }