diff options
Diffstat (limited to 'internal/command/authorizedprincipals/authorized_principals.go')
-rw-r--r-- | internal/command/authorizedprincipals/authorized_principals.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/command/authorizedprincipals/authorized_principals.go b/internal/command/authorizedprincipals/authorized_principals.go index ab5f2f8..44f6c47 100644 --- a/internal/command/authorizedprincipals/authorized_principals.go +++ b/internal/command/authorizedprincipals/authorized_principals.go @@ -1,6 +1,7 @@ package authorizedprincipals import ( + "context" "fmt" "gitlab.com/gitlab-org/gitlab-shell/internal/command/commandargs" @@ -15,7 +16,7 @@ type Command struct { ReadWriter *readwriter.ReadWriter } -func (c *Command) Execute() error { +func (c *Command) Execute(ctx context.Context) error { if err := c.printPrincipalLines(); err != nil { return err } |