server/cmd/async/main.go (20 lines of code) (raw):
// Auto generated. Don't modify.
package main
import (
"fmt"
"os"
"github.com/spf13/cobra"
)
// rootCmd represents the base command when called without any subcommands
var rootCmd = &cobra.Command{
Use: "MyGreeter",
Short: "A brief description of your service",
Long: `A longer description of your service`,
}
// Execute adds all child commands to the root command and sets flags appropriately.
func Execute() {
if err := rootCmd.Execute(); err != nil {
fmt.Println(err)
os.Exit(1)
}
}
func main() {
Execute()
}