campaigner/cmd/filter.go

17 lines
285 B
Go
Raw Normal View History

2020-02-29 13:29:32 +00:00
package cmd
import (
"github.com/spf13/cobra"
)
2020-02-29 13:29:32 +00:00
func FilterCmd() *cobra.Command {
return &cobra.Command{
Use: "filter",
Short: "Interactively filters the current ticket list",
Args: cobra.NoArgs,
Run: filterCmdF,
}
}
func filterCmdF(_ *cobra.Command, _ []string) {}