campaigner/cmd/status.go

22 lines
430 B
Go
Raw Normal View History

2020-03-06 18:54:52 +00:00
package cmd
import (
"github.com/spf13/cobra"
2020-04-29 17:52:15 +00:00
"git.ctrlz.es/mgdelacroix/campaigner/app"
2020-03-06 18:54:52 +00:00
)
func StatusCmd() *cobra.Command {
return &cobra.Command{
2020-03-07 10:11:40 +00:00
Use: "status",
2020-04-27 10:22:15 +00:00
Short: "Prints the campaign status",
Long: "Prints the current status of the campaign and its tickets",
2020-03-07 10:11:40 +00:00
Args: cobra.NoArgs,
2020-04-29 17:52:15 +00:00
Run: withApp(statusCmdF),
2020-03-06 18:54:52 +00:00
}
}
2020-04-29 17:52:15 +00:00
func statusCmdF(a *app.App, cmd *cobra.Command, _ []string) {
a.Campaign.PrintStatus()
2020-03-06 18:54:52 +00:00
}