campaigner/cmd/root.go

33 lines
421 B
Go
Raw Normal View History

2020-02-28 23:54:14 +01:00
package cmd
import (
"fmt"
"os"
"github.com/spf13/cobra"
)
2020-02-29 00:02:56 +01:00
func RootCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "campaigner",
Short: "Create and manage Open Source campaigns",
}
cmd.AddCommand(
2020-02-29 00:59:54 +01:00
AddCmd(),
2020-04-27 12:22:15 +02:00
// FilterCmd(),
2020-02-29 00:49:55 +01:00
InitCmd(),
2020-03-06 19:54:52 +01:00
StatusCmd(),
2020-03-04 22:22:16 +01:00
PublishCmd(),
2020-03-04 22:26:04 +01:00
SyncCmd(),
2020-02-29 00:02:56 +01:00
)
2020-02-29 00:23:26 +01:00
2020-02-29 00:02:56 +01:00
return cmd
2020-02-28 23:54:14 +01:00
}
func Execute() {
2020-02-29 00:02:56 +01:00
if err := RootCmd().Execute(); err != nil {
2020-02-28 23:54:14 +01:00
fmt.Fprintln(os.Stderr, err)
}
}