File tree Expand file tree Collapse file tree
internal/cli/command/issues Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ import (
1717 "github.com/urfave/cli/v3"
1818)
1919
20- // IssueServiceProvider es una interfaz para obtener el servicio de issues de manera lazy
2120type IssueServiceProvider func (ctx context.Context ) (ports.IssueGeneratorService , error )
2221
2322// IssuesCommandFactory es el factory para crear el comando de issues.
@@ -348,7 +347,6 @@ func (f *IssuesCommandFactory) checkoutBranch(branchName string) error {
348347 return nil
349348}
350349
351- // newLinkCommand crea el subcomando 'link'.
352350func (f * IssuesCommandFactory ) newLinkCommand (t * i18n.Translations , cfg * config.Config ) * cli.Command {
353351 return & cli.Command {
354352 Name : "link" ,
@@ -373,7 +371,7 @@ func (f *IssuesCommandFactory) newLinkCommand(t *i18n.Translations, cfg *config.
373371}
374372
375373// createLinkAction crea la acción para linkear un PR a una issue.
376- func (f * IssuesCommandFactory ) createLinkAction (t * i18n.Translations , cfg * config.Config ) cli.ActionFunc {
374+ func (f * IssuesCommandFactory ) createLinkAction (t * i18n.Translations , _ * config.Config ) cli.ActionFunc {
377375 return func (ctx context.Context , command * cli.Command ) error {
378376 prNumber := command .Int ("pr" )
379377 issueNumber := command .Int ("issue" )
You can’t perform that action at this time.
0 commit comments