campaigner/cmd/root.go
2020-03-01 01:17:41 +01:00

31 lines
407 B
Go

package cmd
import (
"fmt"
"os"
"github.com/spf13/cobra"
)
func RootCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "campaigner",
Short: "Create and manage Open Source campaigns",
}
cmd.AddCommand(
AddCmd(),
FilterCmd(),
InitCmd(),
StandaloneCmd(),
TokenCmd(),
)
return cmd
}
func Execute() {
if err := RootCmd().Execute(); err != nil {
fmt.Fprintln(os.Stderr, err)
}
}