Skip to content

Commit

Permalink
Fix vet
Browse files Browse the repository at this point in the history
  • Loading branch information
owenthereal committed Jan 26, 2022
1 parent 3c5e2f3 commit 07bd84d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cmd/meroxa/root/functions/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ func (l *List) Aliases() []string {
return []string{"ls"}
}

func (c *List) Client(client meroxa.Client) {
c.client = client
func (l *List) Client(client meroxa.Client) {
l.client = client
}

func (c *List) Logger(logger log.Logger) {
c.logger = logger
func (l *List) Logger(logger log.Logger) {
l.logger = logger
}

func (l *List) HideHeaders(hide bool) {
Expand Down

0 comments on commit 07bd84d

Please sign in to comment.