27 lines
652 B
Go
27 lines
652 B
Go
|
package cmd
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"os"
|
||
|
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
// RootCmd represents the base command when called without any subcommands
|
||
|
var RootCmd = &cobra.Command{
|
||
|
Use: "lbry",
|
||
|
Short: "A command-line swiss army knife for LBRY",
|
||
|
// Uncomment the following line if your bare application
|
||
|
// has an action associated with it:
|
||
|
// Run: func(cmd *cobra.Command, args []string) { },
|
||
|
}
|
||
|
|
||
|
// Execute adds all child commands to the root command and sets flags appropriately.
|
||
|
// This is called by main.main(). It only needs to happen once to the rootCmd.
|
||
|
func Execute() {
|
||
|
if err := RootCmd.Execute(); err != nil {
|
||
|
fmt.Println(err)
|
||
|
os.Exit(1)
|
||
|
}
|
||
|
}
|