add a flags struct other commands can impelemt
enable completion command
This commit is contained in:
@@ -14,6 +14,15 @@ import (
|
|||||||
// Must be called before executing any commands to ensure services are available.
|
// Must be called before executing any commands to ensure services are available.
|
||||||
var svc *service.Services
|
var svc *service.Services
|
||||||
|
|
||||||
|
type Flags struct {
|
||||||
|
interactive bool
|
||||||
|
title string
|
||||||
|
description string
|
||||||
|
status string
|
||||||
|
issueType string
|
||||||
|
priority int
|
||||||
|
}
|
||||||
|
|
||||||
// rootCmd is the base command for the CLI application.
|
// rootCmd is the base command for the CLI application.
|
||||||
var rootCmd = &cobra.Command{
|
var rootCmd = &cobra.Command{
|
||||||
Short: "Project Management CLI",
|
Short: "Project Management CLI",
|
||||||
@@ -56,7 +65,7 @@ func ExecuteArgsString(args []string) (string, error) {
|
|||||||
|
|
||||||
// init function to set up the command hierarchy and options.
|
// init function to set up the command hierarchy and options.
|
||||||
func init() {
|
func init() {
|
||||||
rootCmd.CompletionOptions.DisableDefaultCmd = true
|
rootCmd.CompletionOptions.DisableDefaultCmd = false
|
||||||
rootCmd.AddGroup(&cobra.Group{ID: "help", Title: "Helping Commands"})
|
rootCmd.AddGroup(&cobra.Group{ID: "help", Title: "Helping Commands"})
|
||||||
rootCmd.SetCompletionCommandGroupID("help")
|
rootCmd.SetCompletionCommandGroupID("help")
|
||||||
rootCmd.SetHelpCommandGroupID("help")
|
rootCmd.SetHelpCommandGroupID("help")
|
||||||
|
|||||||
Reference in New Issue
Block a user