campaigner/cmd/root.go
2020-04-27 11:42:29 +02:00

32 lines
418 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(),
StatusCmd(),
PublishCmd(),
SyncCmd(),
)
return cmd
}
func Execute() {
if err := RootCmd().Execute(); err != nil {
fmt.Fprintln(os.Stderr, err)
}
}