Skip to content

Commit

Permalink
chore: cleanup imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ekristen committed Aug 15, 2024
1 parent 3acb553 commit 097d83f
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 9 deletions.
2 changes: 1 addition & 1 deletion resources/compute-backend-service.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import (
"context"
"errors"
"fmt"
liberror "github.com/ekristen/libnuke/pkg/errors"

"github.com/sirupsen/logrus"

Expand All @@ -13,6 +12,7 @@ import (
compute "cloud.google.com/go/compute/apiv1"
"cloud.google.com/go/compute/apiv1/computepb"

liberror "github.com/ekristen/libnuke/pkg/errors"
"github.com/ekristen/libnuke/pkg/registry"
"github.com/ekristen/libnuke/pkg/resource"
"github.com/ekristen/libnuke/pkg/types"
Expand Down
2 changes: 1 addition & 1 deletion resources/compute-forwarding-rule.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import (
"context"
"errors"
"fmt"
liberror "github.com/ekristen/libnuke/pkg/errors"

"github.com/sirupsen/logrus"

Expand All @@ -13,6 +12,7 @@ import (
compute "cloud.google.com/go/compute/apiv1"
"cloud.google.com/go/compute/apiv1/computepb"

liberror "github.com/ekristen/libnuke/pkg/errors"
"github.com/ekristen/libnuke/pkg/registry"
"github.com/ekristen/libnuke/pkg/resource"
"github.com/ekristen/libnuke/pkg/types"
Expand Down
9 changes: 6 additions & 3 deletions resources/compute-security-policy.go
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
package resources

import (
compute "cloud.google.com/go/compute/apiv1"
"cloud.google.com/go/compute/apiv1/computepb"
"context"
"errors"
"fmt"
liberror "github.com/ekristen/libnuke/pkg/errors"

"github.com/sirupsen/logrus"

"google.golang.org/api/iterator"

compute "cloud.google.com/go/compute/apiv1"
"cloud.google.com/go/compute/apiv1/computepb"

liberror "github.com/ekristen/libnuke/pkg/errors"
"github.com/ekristen/libnuke/pkg/registry"
"github.com/ekristen/libnuke/pkg/resource"
"github.com/ekristen/libnuke/pkg/types"
Expand Down
2 changes: 1 addition & 1 deletion resources/compute-ssl-certificate.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package resources
import (
"context"
"errors"
"github.com/gotidy/ptr"
"strings"

"github.com/gotidy/ptr"
"github.com/sirupsen/logrus"

"google.golang.org/api/iterator"
Expand Down
3 changes: 2 additions & 1 deletion resources/compute-target-http-proxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@ import (
"context"
"errors"
"fmt"
liberror "github.com/ekristen/libnuke/pkg/errors"

"github.com/sirupsen/logrus"

"google.golang.org/api/iterator"

compute "cloud.google.com/go/compute/apiv1"
"cloud.google.com/go/compute/apiv1/computepb"

liberror "github.com/ekristen/libnuke/pkg/errors"
"github.com/ekristen/libnuke/pkg/registry"
"github.com/ekristen/libnuke/pkg/resource"
"github.com/ekristen/libnuke/pkg/types"
Expand Down
3 changes: 2 additions & 1 deletion resources/compute-target-https-proxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@ import (
"context"
"errors"
"fmt"
liberror "github.com/ekristen/libnuke/pkg/errors"

"github.com/sirupsen/logrus"

"google.golang.org/api/iterator"

compute "cloud.google.com/go/compute/apiv1"
"cloud.google.com/go/compute/apiv1/computepb"

liberror "github.com/ekristen/libnuke/pkg/errors"
"github.com/ekristen/libnuke/pkg/registry"
"github.com/ekristen/libnuke/pkg/resource"
"github.com/ekristen/libnuke/pkg/types"
Expand Down
3 changes: 2 additions & 1 deletion resources/compute-url-map.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@ import (
"context"
"errors"
"fmt"
liberror "github.com/ekristen/libnuke/pkg/errors"

"github.com/sirupsen/logrus"

"google.golang.org/api/iterator"

compute "cloud.google.com/go/compute/apiv1"
"cloud.google.com/go/compute/apiv1/computepb"

liberror "github.com/ekristen/libnuke/pkg/errors"
"github.com/ekristen/libnuke/pkg/registry"
"github.com/ekristen/libnuke/pkg/resource"
"github.com/ekristen/libnuke/pkg/types"
Expand Down

0 comments on commit 097d83f

Please sign in to comment.