You've already forked management-refactor
mirror of
https://github.com/netbirdio/management-refactor.git
synced 2026-05-22 17:12:59 -07:00
17 lines
287 B
Go
17 lines
287 B
Go
package cmd
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
var rootCmd = &cobra.Command{
|
|
Use: "netbird-mgmt",
|
|
Short: "",
|
|
Long: "",
|
|
Version: "",
|
|
SilenceUsage: true,
|
|
}
|
|
|
|
// Execute is the entry point for all commands.
|
|
func Execute() error {
|
|
return rootCmd.Execute()
|
|
}
|