Skip to content

Commit c564047

Browse files
committed
fix linter issues
1 parent d608165 commit c564047

File tree

1 file changed

+1
-1
lines changed
  • internal/pkg/services/iaas/utils

1 file changed

+1
-1
lines changed

internal/pkg/services/iaas/utils/utils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ type IaaSClient interface {
1717
GetNetworkAreaRangeExecute(ctx context.Context, organizationId, areaId, networkRangeId string) (*iaas.NetworkRange, error)
1818
}
1919

20-
func GetPublicIP(ctx context.Context, apiClient IaaSClient, projectId, publicIpId string) (string, string, error) {
20+
func GetPublicIP(ctx context.Context, apiClient IaaSClient, projectId, publicIpId string) (ip, associatedResource string, err error) {
2121
resp, err := apiClient.GetPublicIPExecute(ctx, projectId, publicIpId)
2222
if err != nil {
2323
return "", "", fmt.Errorf("get public ip: %w", err)

0 commit comments

Comments
 (0)