http.go 247 B

12345678910111213141516
  1. package cmd
  2. import (
  3. "fmt"
  4. "github.com/spf13/cobra"
  5. )
  6. // httpCmd represents the http command
  7. var httpCmd = &cobra.Command{
  8. Use: "http",
  9. Short: "start http server",
  10. Run: func(cmd *cobra.Command, args []string) {
  11. fmt.Println("ok")
  12. },
  13. }