headed in the right direction. Needs tests and to be cleaned up. This is a working example of the teams design combined with https://github.com/cli/cli/pull/4859#issuecomment-1012776582

This commit is contained in:
bchadwic 2022-01-18 22:35:36 -08:00 committed by Sam Coe
parent 38097e8cad
commit a98395f4e8
No known key found for this signature in database
GPG key ID: 8E322C20F811D086
5 changed files with 133 additions and 121 deletions

View file

@ -5,7 +5,6 @@ import (
"strings"
"github.com/cli/cli/v2/internal/config"
cmdBase "github.com/cli/cli/v2/pkg/cmd/config/base"
cmdGet "github.com/cli/cli/v2/pkg/cmd/config/get"
cmdList "github.com/cli/cli/v2/pkg/cmd/config/list"
cmdSet "github.com/cli/cli/v2/pkg/cmd/config/set"
@ -33,7 +32,6 @@ func NewCmdConfig(f *cmdutil.Factory) *cobra.Command {
cmdutil.DisableAuthCheck(cmd)
cmd.AddCommand(cmdBase.NewCmdConfigBase(f, nil))
cmd.AddCommand(cmdGet.NewCmdConfigGet(f, nil))
cmd.AddCommand(cmdSet.NewCmdConfigSet(f, nil))
cmd.AddCommand(cmdList.NewCmdConfigList(f, nil))