add it again

This commit is contained in:
Tomas Vik 2023-02-07 14:19:25 +01:00
parent e6ab874eed
commit 84da1fad46
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
package view
import (
"github.com/spf13/cobra"
"gitlab.com/gitlab-org/cli/commands/cmdutils"
"gitlab.com/gitlab-org/cli/commands/issuable"
issuableViewCmd "gitlab.com/gitlab-org/cli/commands/issuable/view"
)
func NewCmdView(f *cmdutils.Factory) *cobra.Command {
return issuableViewCmd.NewCmdView(f, issuable.TypeIssue)
}