mirror of
https://github.com/netbirdio/netbird.git
synced 2024-12-03 05:24:56 +01:00
21 lines
268 B
Go
21 lines
268 B
Go
|
package cmd
|
||
|
|
||
|
import "github.com/spf13/cobra"
|
||
|
|
||
|
var (
|
||
|
rootCmd = &cobra.Command{
|
||
|
Use: "wiretrustee",
|
||
|
Short: "",
|
||
|
Long: "",
|
||
|
}
|
||
|
)
|
||
|
|
||
|
// Execute executes the root command.
|
||
|
func Execute() error {
|
||
|
return rootCmd.Execute()
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
rootCmd.AddCommand(upCmd)
|
||
|
}
|