This commit is contained in:
Albert Espín 2024-10-17 18:57:11 +02:00
parent e4739d572f
commit ade38745bc

35
cmd/register.go Normal file
View File

@ -0,0 +1,35 @@
/*
Copyright © 2024 NAME HERE <EMAIL ADDRESS>
*/
package cmd
import (
"fmt"
"github.com/spf13/cobra"
)
// registerCmd represents the register command
var registerCmd = &cobra.Command{
Use: "register",
Short: "A brief description of your command",
Long: `A longer description that spans multiple lines and likely contains examples
and usage of using your command. For example:
Cobra is a CLI library for Go that empowers applications.
This application is a tool to generate the needed files
to quickly create a Cobra application.`,
Run: func(cmd *cobra.Command, args []string) {
fmt.Println("register called")
},
}
func init() {
rootCmd.AddCommand(registerCmd)
registerCmd.Flags().String("sap-addr", ":3000", "nats.io broker host address")
registerCmd.Flags().String("nats-host", "nats", "nats.io broker host address")
registerCmd.Flags().Int("nats-port", 4222, "nats.io broker tcp port")
registerCmd.Flags().String("log-level", "debug", "log level trace")
}