File: issue_note_create.go

package info (click to toggle)
glab 1.53.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 20,936 kB
  • sloc: sh: 295; makefile: 153; perl: 99; ruby: 68; javascript: 67
file content (13 lines) | stat: -rw-r--r-- 329 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
package note

import (
	"github.com/spf13/cobra"
	"gitlab.com/gitlab-org/cli/commands/cmdutils"
	"gitlab.com/gitlab-org/cli/commands/issuable"

	issuableNoteCmd "gitlab.com/gitlab-org/cli/commands/issuable/note"
)

func NewCmdNote(f *cmdutils.Factory) *cobra.Command {
	return issuableNoteCmd.NewCmdNote(f, issuable.TypeIssue)
}