Skip to content

Commit 17068fd

Browse files
committed
Fix linters
1 parent 1a24329 commit 17068fd

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

nodebalancer_config_vpc.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ import (
77
// NodeBalancerVPCConfig objects represent a VPC config for a NodeBalancer
88
// NOTE: NodeBalancer VPC support may not currently be available to all users.
99
type NodeBalancerVPCConfig struct {
10-
ID int `json:"id"`
11-
IPv4Range string `json:"ipv4_range"`
12-
IPv6Range string `json:"ipv6_range,omitzero"`
13-
NodeBalancerID int `json:"nodebalancer_id"`
14-
SubnetID int `json:"subnet_id"`
15-
VPCID int `json:"vpc_id"`
10+
ID int `json:"id"`
11+
IPv4Range string `json:"ipv4_range"`
12+
IPv6Range string `json:"ipv6_range,omitzero"`
13+
NodeBalancerID int `json:"nodebalancer_id"`
14+
SubnetID int `json:"subnet_id"`
15+
VPCID int `json:"vpc_id"`
1616
Purpose NodeBalancerVPCConfigPurpose `json:"purpose,omitzero"`
1717
}
1818

test/unit/nodebalancer_config_vpc_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"context"
55
"testing"
66

7-
"github.com/linode/linodego"
7+
"github.com/linode/linodego/v2"
88
"github.com/stretchr/testify/assert"
99
)
1010

0 commit comments

Comments
 (0)