server/cmd/client/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: "This sample service demonstrates client-server communication using gRPC and shows how to access and interact with the Azure SDK", 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() }