Skip to content

Commit

Permalink
refactor: change GetApplications method receiver from pointer to value
Browse files Browse the repository at this point in the history
  • Loading branch information
sandhilt committed Feb 6, 2025
1 parent fca9145 commit 1cbf9ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/reader/adapter_v1.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ type AdapterV1 struct {
}

// GetApplications implements Adapter.
func (a *AdapterV1) GetApplications(ctx context.Context, first *int, last *int, after *string, before *string, filter *graphql.AppFilter) (*graphql.AppConnection, error) {
func (a AdapterV1) GetApplications(ctx context.Context, first *int, last *int, after *string, before *string, filter *graphql.AppFilter) (*graphql.AppConnection, error) {
panic("unimplemented")
}

Expand Down

0 comments on commit 1cbf9ff

Please sign in to comment.