Skip to content

Commit

Permalink
use camelCase
Browse files Browse the repository at this point in the history
  • Loading branch information
ayessymkanov committed Nov 21, 2023
1 parent 812423a commit d8adfc1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions karbon/karbon_cluster_registration_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ func (op ClusterRegistrationOperations) GetK8sRegistration(ctx context.Context,
}

// GetK8sRegistrationList gets the k8s registration list
func (op ClusterRegistrationOperations) GetK8sRegistrationList(ctx context.Context, offset, page_size int) (*K8sClusterRegistrationListResponse, error) {
path := fmt.Sprintf("/v1-alpha.1/k8s/cluster-registrations?offset=%d&page_size=%d", offset, page_size)
func (op ClusterRegistrationOperations) GetK8sRegistrationList(ctx context.Context, offset, pageSize int) (*K8sClusterRegistrationListResponse, error) {
path := fmt.Sprintf("/v1-alpha.1/k8s/cluster-registrations?offset=%d&page_size=%d", offset, pageSize)
req, err := op.httpClient.NewRequest(http.MethodGet, path, nil)
if err != nil {
return nil, err
Expand Down

0 comments on commit d8adfc1

Please sign in to comment.